@cocacola-lover/knight_path_finder
Version:
Iterative path finding Algorithms for knight on a chessboard
7 lines (6 loc) • 448 B
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 };