From b46692b2e26c99d8da5b3959c947d27ee9bb80c6 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Sun, 22 Apr 2018 21:06:20 +0200 Subject: [PATCH] No more wildcard --- _posts/2018-04-22-bzhctf18.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2018-04-22-bzhctf18.md b/_posts/2018-04-22-bzhctf18.md index 6afd1f5..bb159fb 100644 --- a/_posts/2018-04-22-bzhctf18.md +++ b/_posts/2018-04-22-bzhctf18.md @@ -291,7 +291,7 @@ Pour l'implementation, j'ai utilisé Dijkstra, mais A* aurait éte suffisant et On suppose que le fichier [implementation.py](https://www.redblobgames.com/pathfinding/a-star/implementation.py) contenant A\* et Dijkstra fourni par Red Blob Games se trouve dans le même dossier que notre solution. ```python -from implementation import * +from implementation import GridWithWeights, dijkstra_search, reconstruct_path import sys, socket st = socket.socket(socket.AF_INET, socket.SOCK_STREAM)