Skip to content

Commit 899a4cf

Browse files
Removed printing facr direction
1 parent 7c4d710 commit 899a4cf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Small bot to simulate and test maze solving algorithms before designing the robo
1212

1313
### How to run
1414

15-
Run `run.py` using python 3. Exit by continuously pressing `Esc` several times.
15+
Run `run.py` using python 3. Exit by continuously pressing `Esc` several times. In default `FloodFill` algorithm, press any key to switch to next mode when bot is waiting for a input.
1616

1717
### Changing map and other settings
1818

Diff for: maze-solving-bot-simulator/optimized/optimized_flood_fill.py

-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ def discover_facing_direction(self):
125125
self.direction = Direction.SOUTH
126126

127127
self.facing_direction_discovered = True
128-
print(self.direction)
129128

130129
def flood_fill(self, search_pos: int):
131130

0 commit comments

Comments
 (0)