This is a simple visualizer for an A* path finding algorithm written in V.
# to run:
$ v run aStar.v
# to just compile:
$ v aStar.v
# then to run:
$ ./aStar
q : To quit the applicationc: clear the grid and start from new onespace: initialize path finding algorithm
🚧 Under Construction: We are using heap, but that is not correctly implemented, since instead of O(log(n)) it takes O(n). For that reason, having a bigger grid size, will break the application.
🌱 Growth Opportunity: make it responsive.