Browsing Tag
leetcode
33 posts
The Most Important Leetcode Patterns
If you have been looking for a job in tech, I am pretty sure you have heard of…
Smallest Number in Infinite Set
You have a set which contains all positive integers [1, 2, 3, 4, 5, …]. Implement the SmallestInfiniteSet…
Check Cyclic LinkedList – I
Approach 1 Where we are using Temp pointer. /** * Definition for singly-linked list. * function ListNode(val) {…