(start, i, goal, g_function)
| 72 | return abs(P[0] - goal[0]) + abs(P[1] - goal[1]) |
| 73 | |
| 74 | def key(start, i, goal, g_function): |
| 75 | ans = g_function[start] + W1 * hueristics[i](start, goal) |
| 76 | return ans |
| 77 | |
| 78 | def do_something(back_pointer, goal, start): |
| 79 | grid = np.chararray((n, n)) |
no outgoing calls
no test coverage detected