Add Zeckendorf Search Magic Trick - Fibonacci-based magic trick using Zeckendorf representation
This commit is contained in:
parent
179e247f71
commit
2580f76025
5 changed files with 399 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ import GoldCoinGamePage from "./pages/GoldCoinGamePage";
|
|||
import PlateSwapPuzzlePage from "./pages/PlateSwapPuzzlePage";
|
||||
import ChessboardRepaintPuzzlePage from "./pages/ChessboardRepaintPuzzlePage";
|
||||
import ZeckendorfGamePage from "./pages/ZeckendorfGamePage";
|
||||
import ZeckendorfSearchTrickPage from "./pages/ZeckendorfSearchTrickPage";
|
||||
import Foundations from "./pages/theme-pages/discrete-math/Foundations";
|
||||
import Proofs from "./pages/theme-pages/discrete-math/Proofs";
|
||||
import Counting from "./pages/theme-pages/discrete-math/Counting";
|
||||
|
|
@ -96,6 +97,7 @@ const App = () => (
|
|||
<Route path="/puzzles/plate-swap" element={<PlateSwapPuzzlePage />} />
|
||||
<Route path="/puzzles/chessboard-repaint" element={<ChessboardRepaintPuzzlePage />} />
|
||||
<Route path="/discrete-math/foundations/zeckendorf" element={<ZeckendorfGamePage />} />
|
||||
<Route path="/discrete-math/foundations/zeckendorf-search" element={<ZeckendorfSearchTrickPage />} />
|
||||
|
||||
{/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
|
||||
<Route path="*" element={<NotFound />} />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue