เฉลยแบบฝึกหัด Learn to Code 1
บทที่ 2 Functions
แบบฝึกหัด Nesting Patterns
โจทย์ Call functions from other functions.
คำแปล เรียกใช้งานฟังก์ชันจากจากฟังก์ชันอื่น
เฉลย Nesting Patterns
func turnAround() {
turnLeft()
turnLeft()
}
func solveStair() {
moveForward()
collectGem()
turnAround()
}
solveStair()
moveForward()
solveStair()
moveForward()
turnLeft()
solveStair()
moveForward()
solveStair()
ขอบคุณภาพจาก Swift Playgrounds
-- ดีบี --