Abhishek Dubeylearning-in-public-week-1.hashnode.dev·Nov 25, 2024Week 3 updatesLife is a rollercoaster, and we never know what lies ahead. But it’s the thrill of the unknown that makes the ride worthwhile. After a not-so-good Week 2, I still managed to keep this streak alive. There were moments when I questioned myself: Is this...#linkedlists
Fatima Jannetmahia.hashnode.dev·Jun 10, 2024Coding Exercises for Singly Linked Lists in PythonCreate Simple Singly Linked List class Node: def __init__(self, value): self.value = value self.next = None class LinkedList: def __init__(self, value): new_node = Node(value) self.head = new_node ...1 like·32 readsPython Data Structure and Algorithm - DSApython beginner
Akpotaire Dennisdenniscode.hashnode.dev·Sep 26, 2023Learning DSA in Python: Valid ParenthesesWhen designing a compiler, you will need to parse the codes to be written by users to check if they contain valid parentheses. At least, for some programming languages. If you ever need to parse a set of inputs to see if they contain valid parenthese...DSA
Samuel Godfreybrainzcode.hashnode.dev·Mar 20, 2023Python Programming: The Perfect Solution for the Anagram ProblemIntroduction Anagrams are words or phrases that are formed by rearranging the letters of another word or phrase. In other words, they are two or more words made up of the same letters, but in a different order. For example, the word “listen” is an an...python beginner
Valentine Samuelengineeringval.hashnode.dev·Mar 13, 2023Binary Search Tree - Insert, Lookup and RemoveBinary search trees (BSTs) are a sort of data structure that is used to store and search for data effectively. A BST is a tree structure with no more than two children: a left child and a right child. The left child is always smaller than the parent ...54 readsdata structures