Saravana Sai saravanasai.hashnode.dev·Nov 22, 2024LeetCode Minimum Path Sum Explained: A Dynamic Programming ApproachIntroduction The "Minimum Path Sum" problem is a classic dynamic programming challenge commonly found on platforms like LeetCode. In this blog post, we will walk through the solution to the "Minimum Path Sum" problem step by step, using a dynamic pro...Discussleetcode-solution
Bhadreshkumar Ghevariyablog.bhadreshghevariya.com·Nov 10, 2024I wrote the first leetcode program after a Year and made simple mistakes.Today, I tried to use my problem-solving muscle and tried solving easy-level problems on leetcode. At first, this problem looked very easy to me, So I noted down important pieces of information and started to solve the problem on paper. Still, I took...Discuss·1 likeFirst leetcode
Vasant Mestryvasantmestry.hashnode.dev·Nov 7, 2024Day 2 of 30 days of JavaScript ChallengeHello guys welcome back to new series of JavaScript, where we‘ll be solving 30 days of JavaScript Questions from LeetCode. Here is link of all the problems In this series, we'll tackle each question one by one. I'll guide you by providing solutions a...Discuss30 days of JavaScript LeetcodeJavaScript
Vasant Mestryvasantmestry.hashnode.dev·Nov 6, 2024Day 1 of 30 Days JavaScript ChallengeHellooo guys, welcome back to new series of JavaScript, where we‘ll be solving 30 days of JavaScript Questions from Leetcode. Here is link of all the problems In this series, we'll tackle each question one by one. I'll guide you by providing solutio...Discuss·1 like30 days of JavaScript Leetcode30 Days of Code
KiwiChipkiwicodenest.hashnode.dev·Nov 1, 2024Linked List Exercise (1) - Middle of the linked listLeetcode - middle of the linked list (URL) Entire code class Node: def __init__(self, value): self.value = value self.next = None class LinkedList: def __init__(self, value): new_node = Node(value) self.head...DiscussPython Algorithm Study JournalPython
Saravana Sai saravanasai.hashnode.dev·Oct 13, 2024Detailed Solution for Parsing Boolean Expressions on LeetCodeUnderstanding the Problem: Evaluating Boolean Expressions In this problem, we are given a string representing a boolean expression, and we need to evaluate it to determine whether it's true or false. But what exactly is a boolean expression? Parsing ...Discuss·56 readsleetcode-solution
Siddhesh Dhavalesiddheshdhavale.hashnode.dev·Oct 6, 2024Leetcode ExplanationEfficiently Solving Leetcode 240: Search A 2D Matrix II Introduction: In this article, I'll walk you through the thought process and solution for Leetcode problem 240: "Search a 2D Matrix II". This problem tests our ability to search in a 2D matrix w...Discuss·85 readsleetcode
Shojibkmdshojib.hashnode.dev·Sep 2, 2024Find the Student that Will Replace the Chalk - Leet Code 1894 - Python - in three simple stepsHey everyone, Today we will solve Find the Student that Will Replace the Chalk - Leet Code 1894 in three simple steps. Calculate the total chalk needed for one full round Reduce k modulo total_chalk Iterate through the array to find the first stud...Discuss·66 readsDSA
SANTOSH SINGHsantoshsingh.hashnode.dev·Sep 1, 2024Mastering the Two-Pointer Technique in Java: A Detailed GuideWhat is the Two-Pointer Technique? The two-pointer technique is a pattern often used in scenarios where you need to search for pairs in a sequence or compare elements in a sorted array or list. As the name suggests, it involves using two pointers, ty...DiscussProblem Solvers' Journalthreesum
Ganesh Nitalikarganeshnitalikar.hashnode.dev·Aug 27, 2024Day 1 of #30DaysOfCode: Kicking Off with Java, React, and LeetCodeToday marks the first day of my #30DaysOfCode challenge! I’m excited to dive deep into Data Structures and Algorithms (DSA) with Java, explore more of React, and tackle some challenging LeetCode problems. Here’s a recap of what I accomplished on Day ...Discuss30DaysOfCodeChallengecoding challenge