// Quick Start
Hello! I'm your DSA Tutor AI. I use a Socratic approach — I'll guide you with questions rather than giving direct answers, helping you build genuine understanding.
What topic would you like to explore today? You can also upload a document, image of your handwritten solution, or speak to me!
class Node:
def __init__(self, data):
self.data = data
self.next = None
class LinkedList:
def __init__(self):
self.head = None