(board, y)
| 633 | return True |
| 634 | |
| 635 | def isCompleteLine(board, y): |
| 636 | # Return True if the line filled with boxes with no gaps. |
| 637 | for x in range(BOARDWIDTH): |
| 638 | if board[x][y] == BLANK: |
| 639 | return False |
| 640 | return True |
| 641 | |
| 642 | |
| 643 | def removeCompleteLines(board): |
no outgoing calls
no test coverage detected