From 9c9a414fae8f633a9e0b50d50c1b3b63500903fd Mon Sep 17 00:00:00 2001 From: NoobCoder143 Date: Thu, 30 Jan 2025 19:43:11 +0530 Subject: [PATCH] Added Algomap.io to DSA Articles --- components/SideNavbar/SideNavbarCategoryList.tsx | 2 +- database/data_structures/dsa_articles.json | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/components/SideNavbar/SideNavbarCategoryList.tsx b/components/SideNavbar/SideNavbarCategoryList.tsx index 9675c2df0..1cf92e708 100644 --- a/components/SideNavbar/SideNavbarCategoryList.tsx +++ b/components/SideNavbar/SideNavbarCategoryList.tsx @@ -11,7 +11,7 @@ export const SideNavbarCategoryList: FC<{ const router = useRouter() const [category, setCategory] = useState('') const listRef = useRef(null) - + useEffect(() => { const cat: string | undefined = router.query.category as string | undefined diff --git a/database/data_structures/dsa_articles.json b/database/data_structures/dsa_articles.json index 53742e65f..5fc2d5158 100644 --- a/database/data_structures/dsa_articles.json +++ b/database/data_structures/dsa_articles.json @@ -12,5 +12,12 @@ "url": "https://cheatography.com/burcuco/cheat-sheets/data-structures-and-algorithms/", "category": "data-structures", "subcategory": "dsa_articles" + }, + { + "name": "Free DSA RoadMap", + "description": "Its a free DSA roadmap which consists of topic wise problems along with video and code solutions ,it's a great website for getting started", + "url": "https://algomap.io/", + "category": "data-structures", + "subcategory": "dsa_articles" } ]