Skip to content

Instantly share code, notes, and snippets.

View pinkninjajess's full-sized avatar

Jessica Valenti pinkninjajess

  • Vienna, Austria
  • 15:32 (UTC +02:00)
View GitHub Profile
@pinkninjajess
pinkninjajess / MazeSolver
Last active August 31, 2020 22:16
Java A* Maze / Pathfinding - created as part of a coding challenge
package Maze;
import java.util.*;
/*
Learned about the A* algorithm from many sources including
https://www.raywenderlich.com/3016-introduction-to-a-pathfinding - strategy adopted from this post
http://csis.pace.edu/~benjamin/teaching/cs627/webfiles/Astar.pdf
*/