Return a string of the opponent's checkers.
(checker)
| 117 | |
| 118 | |
| 119 | def otherCheckers(checker): |
| 120 | """Return a string of the opponent's checkers.""" |
| 121 | return {'x': ('o', 'O'), 'X': ('o', 'O'), |
| 122 | 'o': ('x', 'X'), 'O': ('x', 'X')}[checker] |
| 123 | |
| 124 | |
| 125 | def getPossibleDstMoves(board, srcSpace): |
no outgoing calls
no test coverage detected