เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 2 Functions
แบบฝึกหัด Collect, Toggle, Repeat
โจทย์ Define a function for a repeating pattern.
คำแปล กำหนดฟังก์ชันสำหรับรูปแบบการทำซ้ำ
เฉลย Collect, Toggle, Repeat
func switchGem() {
moveForward()
collectGem()
moveForward()
toggleSwitch()
moveForward()
}
switchGem()
turnLeft()
switchGem()
moveForward()
turnLeft()
switchGem()
turnLeft()
switchGem()
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --