Click here to see the problem in LeetCode. Read the description carefully. This one is a pretty easy problem for you if you know how to...
Continue reading...LeetCode
35. Search Insert Position | LeetCode | Python | Solution
This one is a binary search-related problem. Click here to see the problem in LeetCode. We will be given a sorted array in ascending order. And...
Continue reading...620. Not Boring Movies | LeetCode | SQL | Solution
This one is database related problem and pretty easy. Click here to see the problem on LeetCode. Read the description and try to understand the problem....
Continue reading...83. Remove Duplicates from Sorted List | LeetCode | Python | Solution
Let’s solve a linked list problem. See the problem in Leetcode. Click Here. The problem description is pretty short and simple. It says that we are...
Continue reading...1342. Number of Steps to Reduce a Number to Zero | LeetCode | Python | Solution
Here is the link to this problem. Read the problem description carefully before solving this problem. It’s an easy Leetcode problem. Here we will be given...
Continue reading...704. Binary Search | LeetCode | Python | Solution
Read the problem description first. To see the problem, click here. There is nothing to explain. It’s nothing but a binary search implementation. If you know...
Continue reading...404. Sum Of Left Leaves | LeetCode | Python | Solution
This problem description is pretty simple. The description is: find the sum of all left leaves in a given binary tree. Here is the link of...
Continue reading...1480. Running Sum of 1d Array | LeetCode | Python | Solution
Problem link Given an array of integers, We have to return the running sum of that array. Suppose, we have an array of integers like [1,...
Continue reading...1295. Find Numbers with Even Number of Digits | LeetCode | Python | Solution
Here is the problem link to see the problem details. The problem description is very concise and easy to understand. Given an array of integers, we...
Continue reading...876. Middle of the Linked List | LeetCode | Python | Solution
Here is the problem link. See the problem explanation first and try to understand the problem. It’s an easy linked list problem. We have to return...
Continue reading...