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