Tushar Panttusharpant.online·7 hours agoDay 2 of 100 Days of DSA Challenge: Arrays BasicsIn today's journey of the 100 Days of DSA challenge, I explored fundamental array operations. Arrays are a versatile data structure, and mastering their operations is crucial for solving problems effectively. Here are the problems I tackled, along wi...Discuss100 days of DSADSA
Kanchan RaiforKanchan Raikanchanraiii.hashnode.dev·8 hours agoDay 2 : 100 Days Of DSAWelcome to Day 2 of my 100 Days of DSA challenge! Today, I solved five problems focused on arrays. Here's a quick look at the questions I tackled and how I approached them 🤖✨ Check out my GitHub repository for all my solutions and progress. Let’s ke...Discuss100 Days of DSADSA
Shubham Sardablog.unwiredlearning.com·10 hours agoBinary Tree Maximum Path Sum (Leetcode #124)In this blog post, we’re going to dive into a classic algorithm problem from LeetCode - "Binary Tree Maximum Path Sum." This problem challenges our understanding of tree traversal techniques and how to efficiently manage potential paths through a bin...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·10 hours agoConstruct Binary Tree from Preorder and Inorder Traversal (Leetcode #105)Reconstructing a binary tree from its traversal sequences is a common problem in computer science, particularly in the domain of tree data structures. This problem not only tests your understanding of tree traversal techniques but also challenges you...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·10 hours agoKth Smallest Element in a BST (Leetcode #230)Finding specific elements in a Binary Search Tree (BST) is a common problem in computer science, often used to test knowledge of tree traversal techniques and understanding of BST properties. One such problem is determining the Kth smallest element i...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·11 hours agoValidate Binary Search Tree (Leetcode #98)The "Validate Binary Search Tree" (BST) is a popular problem from Leetcode (problem #98) that often challenges developers during coding interviews. In this blog, we will cover everything you need to solve this problem, including a common brute-force ...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·11 hours agoBinary Tree Level Order Traversal (Leetcode #102)The Binary Tree Level Order Traversal question is a popular problem from LeetCode that involves traversing a binary tree level by level, similar to reading a book from top to bottom, left to right. In this blog post, we will break down the question, ...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·11 hours agoLowest Common Ancestor of a Binary Search Tree (Leetcode #235)Finding the Lowest Common Ancestor (LCA) in a Binary Search Tree (BST) is a fundamental problem that often appears in technical interviews and coding challenges. The LCA of two nodes p and q in a BST is defined as the deepest node that is an ancestor...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·12 hours agoSubtree of Another Tree (Leetcode #572)Binary trees are an important data structure in computer science, and they often form the basis of many interesting coding problems. One such problem is determining whether a given tree is a subtree of another tree. In this blog, we'll discuss Leetco...DiscussDSA Interview Preparation With Blind 75DSA
Shubham Sardablog.unwiredlearning.com·12 hours agoSame Tree (Leetcode #100)The "Same Tree" problem is a classic question that tests your understanding of binary tree structures and your ability to solve problems using recursion. In this post, we'll take a look at the problem, discuss a brute-force approach, provide hints, a...DiscussDSA Interview Preparation With Blind 75DSA