The A* search algorithm implemented in gleam
gleam add gleamstar@1import gleamstar
pub fn main() {
gleamstar.a_star(#(0, 0), #(2, 2), [#(1, 1)])
// Ok([#(0, 1), #(1, 2), #(2, 2)])
}Further documentation can be found at https://hexdocs.pm/gleamstar.
gleam test # Run the tests