Vadish Chhatwaldukex.hashnode.dev·Jun 16, 2024DSA Journey: From Newbie to Ace"Don't let other exciting techs stop you from practicing DSA. Keep grinding, stay disciplined, start logic building! " Mandatory Sitting In my second year of college, I was enjoying life with my friends. Soon, the third semester flew by, and my seni...10 likesC++
ajith manmadhanajithmanmu.hashnode.dev·Dec 30, 2023Solving Balanced Binary Tree - Leetcode problemIn the cinematic adaptation of this challenge, we find ourselves on an intriguing quest to determine the balance of a mystical binary tree. Our mission is to unveil the tree's equilibrium, where the difference between the heights of the Left Subtree ...General Programming
ajith manmadhanajithmanmu.hashnode.dev·Dec 28, 2023Solving Flood Fill - LeetCode problemIn this problem, we delve into the Flood Fill algorithm, which plays a crucial role in tracing bounded areas with the same color. This algorithm finds applications in various real-world scenarios, such as the bucket-filling tool in painting software ...data structures
ajith manmadhanajithmanmu.hashnode.dev·Dec 28, 2023Solving Merge Two Sorted Lists - LeetCode problemIn the "Merge Two Sorted Lists" LeetCode problem, you'll encounter a common task in programming: merging two sorted linked lists into a single sorted list. This challenge tests your ability to work with linked data structures and efficiently combine ...1 likedata structures
ajith manmadhanajithmanmu.hashnode.dev·Dec 27, 2023Solving Valid Parantheses - Leetcode problemProblem Statement Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. Leetcode link - https://leetcode.com/problems/valid-parentheses/ Idea We can use stack to keep track of the openi...General Programming
Tanishq Chaudharychaudharycodes.hashnode.dev·Oct 24, 2022Do Just 75 LeetCode problems.So, you want to grind LeetCode, get that dream job in MAANG. But, there are more than two thousand problems. You don’t have the time to go through each and every single one. Is there an optimal way to cover all the important data structures and algor...1 likeleetcode
Aryan Srivastavaaryansri.hashnode.dev·Jul 16, 2022Valid Palindrome - LeetcodeIntroduction In this article of the series we're covering the valid palindrome problem from leetcode. We'll be covering all the problems with explanation, code, time and space complexity in Grind 75 sheet. Grind75 is a curated list of Algorithmic que...Grind 75leetcode
Aryan Srivastavaaryansri.hashnode.dev·Jul 2, 2022Valid parentheses - LeetcodeIntroduction Valid parentheses is an standard problem based on stacks, it's a simple program but asked in different interviews of big tech giants as well like Facebook, Amazon, Microsoft, Apple, Google, and other tech companies. Problem Statement Giv...1 like·28 readsGrind 75algorithms
Aryan Srivastavaaryansri.hashnode.dev·Jul 1, 2022Two Sum - LeetcodeIntroduction Two sum is a classic problem, and one of the most liked problems on leetcode. It seems to be an easy problem yet it is asked frequently in many interviews of big companies like Facebook(meta), Google, Amazon, Microsoft, Adobe, Apple, Net...1 like·46 readsGrind 75leetcode