15 September 2020

Learn to Code 1 - เฉลยแบบฝึกหัด Across the Board

เฉลยแบบฝึกหัด Learn to Code 1

บทที่ 2 Functions

แบบฝึกหัด Across the Board


โจทย์ Identify a repeating pattern and define a function.

คำแปล ระบุรูปแบบการทำซ้ำ และกำหนดฟังก์ชัน



เฉลย Across the Board

func getRow() {

    collectGem()

    moveForward()

    collectGem()

    moveForward()

    turnLeft()

    turnLeft()

    turnLeft()

}


getRow()

getRow()

getRow()

collectGem()

moveForward()

turnLeft()

turnLeft()

turnLeft()

collectGem()

moveForward()

collectGem()




ขอบคุณภาพจาก Swift Playgrounds

-- ดีบี --