(row, col)
| 116 | } |
| 117 | |
| 118 | createEmptyMap(row, col) { |
| 119 | return new Array(row).fill().map(() => |
| 120 | new Array(col).fill().map((u) => ({ |
| 121 | isWall: false, |
| 122 | isStart: false, |
| 123 | isGoal: false, |
| 124 | agent: -1, |
| 125 | color: "", |
| 126 | })) |
| 127 | ); |
| 128 | } |
| 129 | |
| 130 | async requestSolution(e) { |
| 131 | e.preventDefault(); |
no outgoing calls
no test coverage detected