(x, y)
| 34 | current_value.reverse() |
| 35 | |
| 36 | def makeXY(x, y): |
| 37 | # up |
| 38 | # down |
| 39 | # right |
| 40 | # left |
| 41 | return [(x, y-1), |
| 42 | (x, y+1), |
| 43 | (x+1, y), |
| 44 | (x-1, y)] |
| 45 | |
| 46 | def right(x, y): |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected