@cocacola-lover/knight_path_finder
Version:
Iterative path finding Algorithms for knight on a chessboard
12 lines (10 loc) • 481 B
text/typescript
import Board from "./board.js";
import OrderedLinkedList from "./ordered_linked_list.js";
import { Square, SearchResult, SearchIterator, IterationResult, PathFindingAlgo } from "./interfaces.js";
import ChessPointers from "./chess_pointer.js";
import PathFindingIterators from "./searchAlgorithms.js";
export {
ChessPointers, PathFindingIterators,
OrderedLinkedList, Board,
Square, SearchResult, SearchIterator, PathFindingAlgo, IterationResult
};