右手法@コードを学ぼう1
//右手法@コードを学ぼう1 func navigateAroundWall() { if isBlockedRight { moveForward() } else { turnRight() moveForward() } } while !isOnClosedSwitch { navigateAroundWall() if isOnGem { collectGem() turnLeft() turnLeft() } } toggleSwitch()
//右手法@コードを学ぼう1 func navigateAroundWall() { if isBlockedRight { moveForward() } else { turnRight() moveForward() } } while !isOnClosedSwitch { navigateAroundWall() if isOnGem { collectGem() turnLeft() turnLeft() } } toggleSwitch()