Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [Add] Create maze_search.py Add maze_search.py in dfs section. * [Edit] Add description and examples Add description and examples in maze_search problem. * [Edit] Add methods in maze_search Add find_path and dfs methods in dfs_maze_search problem. * [Edit] Add global variable Add global variable directions in maze_search problem in dfs section. * [Edit] Add global variable Add global variable cnt in maze_search problem in dfs section. * [Edit] Add return condition Add return condition of dfs method. * [Edit] Add code in dfs method Move i and j following defined directions. * [Edit] Add code in dfs method Implement recursive call in dfs method. * [Fix] Implement dfs method Fix wrong variable names in dfs method. * [Edit] Add dfs method call and testing code Complete find_path method and add testing code. * [Edit] Delete testing code * [Edit] Delete global variable Change global variable directions to local variable. * [Edit] Delete global variable Change global variable cnt to local variable. * [Edit] Add description Add description in maze_search problem in dfs section. * [Edit] Add unittest Implement unittest func. of maze_search problem and edit init file. * [Edit] Edit unittest Change wrong test answer.
- Loading branch information