(row, [start, end])
| 57 | } |
| 58 | |
| 59 | getSection(row, [start, end]) { |
| 60 | return this.board[row].slice(start, end) |
| 61 | } |
| 62 | |
| 63 | printBoard(output = (...v) => console.log(...v)) { |
| 64 | // helper function to display board |
no outgoing calls
no test coverage detected