From c30f406989801a6ed31667c99e8380f7621250b6 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 07:20:39 +0000 Subject: [PATCH] Remove Northcott's Game from listing Remove Northcott's Game from the Data Structures and Algorithms listing. --- src/components/InteractiveGallery.tsx | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/components/InteractiveGallery.tsx b/src/components/InteractiveGallery.tsx index bae17f1..6bac58f 100644 --- a/src/components/InteractiveGallery.tsx +++ b/src/components/InteractiveGallery.tsx @@ -6,7 +6,6 @@ import { Search } from 'lucide-react'; import Layout from '@/components/Layout'; import BinarySearchTrick from '@/components/BinarySearchTrick'; import TernarySearchTrick from '@/components/TernarySearchTrick'; -import NorthcottsGame from '@/components/NorthcottsGame'; interface Interactive { id: string; @@ -31,13 +30,6 @@ const interactives: Interactive[] = [ tags: ['ternary', 'magic', 'numbers', 'trick', 'data-structures', 'search'], component: TernarySearchTrick }, - { - id: 'northcotts-game', - title: "Northcott's Game", - description: 'A two-player strategy game where players move their pieces along rows trying to block each other. Features multiple game modes and customizable board sizes.', - tags: ['game', 'strategy', 'two-player', 'logic', 'combinatorial-game-theory'], - component: NorthcottsGame - } ]; const InteractiveGallery = () => { const [searchTerm, setSearchTerm] = useState('');