(row, col)
| 126 | } |
| 127 | |
| 128 | createEmptyMap(row, col) { |
| 129 | return new Array(row).fill().map(() => |
| 130 | new Array(col).fill().map((u) => ({ |
| 131 | isWall: false, |
| 132 | isStart: false, |
| 133 | isGoal: false, |
| 134 | agent: -1, |
| 135 | color: "", |
| 136 | })) |
| 137 | ); |
| 138 | } |
| 139 | |
| 140 | async requestSolution(e) { |
| 141 | e.preventDefault(); |
no outgoing calls
no test coverage detected