In computer science, Linked List is a basic and linear type data structure like Array. Both are used to store a collection of elements. But there is a difference between Array and Linked List. But In this article, I will write all about Linked List. You can read my article about the Array if you […]
Month: December 2020
Insert and Delete Operation in Binary Search Tree | Code Snippet | Python
This post is all about code. We will see the implementation of insertion and deletion in the Binary Search Tree. I will try to write details about these topics soon. TreeNode Insert Delete
Contains Duplicate | LeetCode 217 | Python | Solution
Click here to see the problem details. The problem is simple. We have to find at least one duplicate in the given array. If we found any duplicate number, we will return True. Otherwise, we will return False. That’s the simple idea about the problem. And given array’s elements will be integers. Let’s see two […]
Reverse String | LeetCode 344 | Python | Solution
Click here to see the problem. And read the description and try to understand the problem first. Reverse String is one of the most common problems in computer programming. And this time, the input string is given as an array of characters. We have to return the reverse version of the given array. See the […]
Largest Number At Least Twice of Others | LeetCode 747 | Python | Solution
Click here to see the problem in LeetCode. And read the problem’s details. This one is a pretty simple problem. We will be given an integer array. We have to find the largest element’s index, which is must be at least twice as much as every other number in the array. If it’s not matched […]
51st Blog Post
I published my 50th blog post on this site. This post is all about my blog journey. Though I am not an expert, and my journey is not so long. It will be around one year. I started this website for myself. I always want to know more about technology and improve myself. And I […]