Shaunak Deshpandeshadesofcode.hashnode.net·Sep 11, 2022How Quitting Data Structures & Algorithms Improved My LifeIn midtown Manhattan, between 7th Avenue/53rd Street and 5th Avenue/53rd Street Station, lies the Museum of Modern Art. On the fifth floor of the museum you'll find one of the most revered pieces of art in the entire world; Vincent van Gogh's "The S...Shishir and 12 others are discussing this13 people are discussing thisDiscuss·236 likes·934 reads4articles4weeksAn eye opener for every indian student out there. Learning to explore your own path, staying strong to your own resolve. Thank you Shaunak for sharing this amazing article. All the best for your future! 3
Pratik Malidevelopeandsolve.hashnode.net·Mar 14, 2023Unlocking the Power of Data StructuresAs an aspiring software developer, I've always been fascinated by the way computers store and manipulate data. One of the key concepts that underpin this is the idea of data structures – a way of organizing and managing data in a way that allows for ...Darshan Pavar and 3 others are discussing this4 people are discussing thisDiscuss·122 likes·588 readsDSAWeMakeDevs👍🏻 10
Pratik Malidevelopeandsolve.hashnode.net·Mar 15, 2023Mastering Array Methods in JavaIntroduction As a Java developer, understanding the various array methods in Java is essential for writing robust and efficient code. Arrays are powerful data structures that store multiple values of the same type, allowing us to organize and manipul...Darshan Pavar and 3 others are discussing this4 people are discussing thisDiscuss·106 likes·2.3K readsDSAWeMakeDevs
Vaani Pathariyathetechdiaries.hashnode.net·Apr 25, 2023Neetcode 150 : What is it ??Neetcode 150 is a set of 150 most asked Leetcode questions in coding contests of various hiring companies, especially FAANG. Okay, but you might be wondering why am I writing about this, and what am I trying to do here. Well, here's the answer: I wan...DiscussDSA
Lakshit Chiranjiv SagarforLeeting-LCSleeting-lcs.hashnode.net·Apr 25, 2023Smallest Number in Infinite SetProblem Statement:- You have a set which contains all positive integers [1, 2, 3, 4, 5, ...]. Implement the SmallestInfiniteSet class: SmallestInfiniteSet() Initializes the SmallestInfiniteSet object to contain all positive integers. int popSmalles...Discuss·10 likes·68 readsDSA
Shreyansh Agarwalshreyanshagarwal.hashnode.net·Apr 24, 2023How to implement Linked List using Dictionary in PythonIntroduction In this blog, we will implement Linked List data structure using in-built data type dictionary in Python. This blog gives you an idea about abstract data structure and gives a different way to implement linked list in Python. Linked List...Discuss·1 likePython 3
Aman Nayakcodetomoon.hashnode.net·Apr 24, 2023Stack (javascript)Introduction A stack is a fundamental data structure in computer science and programming. It is a Last-In-First-Out (LIFO) data structure where elements are added and removed from the same end of the stack, which is the top. Stacks have numerous appl...DiscussJavaScript
Piyush Satipiyushsati0409.hashnode.net·Apr 23, 2023What is BackEnd Development and How to be oneWhat is Backend Development Backend Development is the term for behind-the-scenes activities that happens when you do anything on a website or web application. It is mostly referred to the server-side of an application and everything that communicate...DiscussWeMakeDevs
Lakshit Chiranjiv SagarforLeeting-LCSleeting-lcs.hashnode.net·Apr 23, 2023Restore The ArrayProblem Statement:- A program was supposed to print an array of integers. The program forgot to print whitespaces and the array is printed as a string of digits s and all we know is that all integers in the array were in the range [1, k] and there ar...Discuss·10 likesDSA
Bandari sai kumartechrush.hashnode.net·Apr 22, 2023lengthOfLastWord C++ CodeThis line declares the function lengthOfLastWord that takes a string s as input and returns an integer. This line initializes a variable len to 0, which will be used to keep track of the length of the last word. This line initializes a variable i t...Discuss·10 likesDSA
Adesh Khannatheadeshkhanna.hashnode.net·Apr 22, 2023Moore's Voting Algorithm: A Step-by-Step Guide to Finding the Majority ElementGiven an array of N integers return an element that occurs more than N/2 times in the given array. The Brute Force The most Navie and brute force approach is - Loop through each of the elements of the array For each of the elements, find its count ...DiscussCracking the codeC++
Dhawal Pandyadhawalpandya01.hashnode.net·Apr 22, 2023Solving Valid AnagramValid Anagram is a common interview question that is often used to assess a candidate's understanding of string manipulation and data structures. The problem asks whether two given strings are anagrams of each other, meaning that they contain the sam...DiscussDSA
Lakshit Chiranjiv SagarforLeeting-LCSleeting-lcs.hashnode.net·Apr 22, 2023Minimum Insertion Steps to Make a String PalindromeProblem Statement:- Given a string s. In one step you can insert any character at any index of the string. Return the minimum number of steps to make s palindrome. A Palindrome String is one that reads the same backward as well as forward. Link: http...Discuss·10 likesDSA