大宮盆栽デイズ - Omiya Bonsai Days -

冗談めかす埼玉のファインマン

並んだ階段@コードを学ぼう1

//並んだ階段@コードを学ぼう1
func collectGemTurnAround() {
    moveForward()
    moveForward()
    collectGem()
    turnLeft()
    turnLeft()
    moveForward()
    moveForward()
}

func solveRow() {
    collectGemTurnAround()
    collectGemTurnAround()
}

func a() {
    turnRight()
    moveForward()
    turnLeft()
}

solveRow()
a()
solveRow()
a()
solveRow()

youtu.be