
A Great Visual Studio Code Extension to help you learn Data Structures Visually
Image Cover by Chinenye Okeke I recently stumbled across a short from the official " Visual Studio Code " Channel where they showcase an extension called " Debug Visualizer ". It is essentially allows you to see your Data Structures in a visual format without having yourself to imagine it. I found it to be a great way for people, like me, to practice my Data Structures and Algorithms for technical interviews because I master topics quickly when it comes to visual learning. Trying out the tool myself! I want to see how good it is, so I tried the extension. It was quite difficult to set up since there were limited documentation. With the help of AI, I was able to get an MVP. The example I am showcasing is reversing a Linked List: from __future__ import annotations from dataclasses import dataclass from typing import Optional , Iterable , Any import json try : import debugpy # VS Code debugging adapter except Exception : # pragma: no cover - defensive fallback debugpy = None @dataclass cl
Continue reading on Dev.to Python
Opens in a new tab




