เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 3 For Loops
แบบฝึกหัด Loop Jumper
โจทย์ Identify the repeating pattern for jumping through the portals.
คำแปล ระบุรูปแบบการทำซ้ำสำหรับการกระโดดผ่านประตูมิติ
เฉลย Loop Jumper
moveForward()
turnLeft()
for i in 1 ... 5 {
moveForward()
moveForward()
collectGem()
turnRight()
moveForward()
turnLeft()
moveForward()
}
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --