Day-9
Partition List
#86
Algorithm: LinkedList, Two Pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft2 #apple2
Partition List
#86
Algorithm: LinkedList, Two Pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft2 #apple2
LeetCode
Partition List - LeetCode
Can you solve this real interview question? Partition List - Given the head of a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of theโฆ
You should preserve the original relative order of theโฆ
Day-9 (Solution)
Partition List
#86
Algorithm: LinkedList, Two Pointer
Solution: https://gist.github.com/lavakush-m-tiwari/02fceae370cbbb8701671ac7ded27fcd
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft2 #apple2
Partition List
#86
Algorithm: LinkedList, Two Pointer
Solution: https://gist.github.com/lavakush-m-tiwari/02fceae370cbbb8701671ac7ded27fcd
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft2 #apple2
LeetCode
Partition List - LeetCode
Can you solve this real interview question? Partition List - Given the head of a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of theโฆ
You should preserve the original relative order of theโฆ
Day-10
Linked List Cycle
#141
Algorithm: LinkedList, Two Pointer , HashTable
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon11 #microsoft6 #google2 #apple2
Linked List Cycle
#141
Algorithm: LinkedList, Two Pointer , HashTable
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon11 #microsoft6 #google2 #apple2
LeetCode
Linked List Cycle - LeetCode
Can you solve this real interview question? Linked List Cycle - Given head, the head of a linked list, determine if the linked list has a cycle in it.
There is a cycle in a linked list if there is some node in the list that can be reached again by continuouslyโฆ
There is a cycle in a linked list if there is some node in the list that can be reached again by continuouslyโฆ
Day-10
Linked List Cycle
#141
Algorithm: LinkedList, Two Pointer , HashTable
Solution: https://gist.github.com/lavakush-m-tiwari/932ca2d6e72c93708e59a9417444ea94
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon11 #microsoft6 #google2 #apple2
Linked List Cycle
#141
Algorithm: LinkedList, Two Pointer , HashTable
Solution: https://gist.github.com/lavakush-m-tiwari/932ca2d6e72c93708e59a9417444ea94
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon11 #microsoft6 #google2 #apple2
LeetCode
Linked List Cycle - LeetCode
Can you solve this real interview question? Linked List Cycle - Given head, the head of a linked list, determine if the linked list has a cycle in it.
There is a cycle in a linked list if there is some node in the list that can be reached again by continuouslyโฆ
There is a cycle in a linked list if there is some node in the list that can be reached again by continuouslyโฆ
Day-11
LRU Cache
#146
Algorithm: LinkedList, Two Pointer
Related Video: https://www.youtube.com/watch?v=akFRa58Svug
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon121 #facebook66 #microsoft49 #google7
LRU Cache
#146
Algorithm: LinkedList, Two Pointer
Related Video: https://www.youtube.com/watch?v=akFRa58Svug
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon121 #facebook66 #microsoft49 #google7
LeetCode
LRU Cache - LeetCode
Can you solve this real interview question? LRU Cache - Design a data structure that follows the constraints of a Least Recently Used (LRU) cache [https://en.wikipedia.org/wiki/Cache_replacement_policies#LRU].
Implement the LRUCache class:
* LRUCache(intโฆ
Implement the LRUCache class:
* LRUCache(intโฆ
Day-11 (Solution)
LRU Cache
#146
Algorithm: LinkedList, Two Pointer
Related Video: https://www.youtube.com/watch?v=akFRa58Svug
Solution: https://gist.github.com/lavakush-m-tiwari/efe39f454db09d9914da673cbbe88e74
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon121 #facebook66 #microsoft49 #google7
LRU Cache
#146
Algorithm: LinkedList, Two Pointer
Related Video: https://www.youtube.com/watch?v=akFRa58Svug
Solution: https://gist.github.com/lavakush-m-tiwari/efe39f454db09d9914da673cbbe88e74
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon121 #facebook66 #microsoft49 #google7
LeetCode
LRU Cache - LeetCode
Can you solve this real interview question? LRU Cache - Design a data structure that follows the constraints of a Least Recently Used (LRU) cache [https://en.wikipedia.org/wiki/Cache_replacement_policies#LRU].
Implement the LRUCache class:
* LRUCache(intโฆ
Implement the LRUCache class:
* LRUCache(intโฆ
Day-12
Design Browser History
#1472
Algorithm: LinkedList, stack, Design , Doubly linked li
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon3 #oracle2
Design Browser History
#1472
Algorithm: LinkedList, stack, Design , Doubly linked li
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon3 #oracle2
LeetCode
Design Browser History - LeetCode
Can you solve this real interview question? Design Browser History - You have a browser of one tab where you start on the homepage and you can visit another url, get back in the history number of steps or move forward in the history number of steps.
Implementโฆ
Implementโฆ
Day-12 (Solution)
Design Browser History
#1472
Algorithm: LinkedList, stack, Design , Doubly linked list
Solution: https://gist.github.com/lavakush-m-tiwari/2d84f1e74d873435972597440f17c124
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon3 #oracle2
Design Browser History
#1472
Algorithm: LinkedList, stack, Design , Doubly linked list
Solution: https://gist.github.com/lavakush-m-tiwari/2d84f1e74d873435972597440f17c124
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon3 #oracle2
LeetCode
Design Browser History - LeetCode
Can you solve this real interview question? Design Browser History - You have a browser of one tab where you start on the homepage and you can visit another url, get back in the history number of steps or move forward in the history number of steps.
Implementโฆ
Implementโฆ
Day-13
Rotate List
#61
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft3
Rotate List
#61
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft3
LeetCode
Rotate List - LeetCode
Can you solve this real interview question? Rotate List - Given the head of a linked list, rotate the list to the right by k places.
Example 1:
[https://assets.leetcode.com/uploads/2020/11/13/rotate1.jpg]
Input: head = [1,2,3,4,5], k = 2
Output: [4โฆ
Example 1:
[https://assets.leetcode.com/uploads/2020/11/13/rotate1.jpg]
Input: head = [1,2,3,4,5], k = 2
Output: [4โฆ
Day-13 (Solution)
Rotate List
#61
Algorithm: LinkedList, two pointer
Solution: https://gist.github.com/lavakush-m-tiwari/aa46ee10459e2d7daf5b8bb634cf9d88
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft3
Rotate List
#61
Algorithm: LinkedList, two pointer
Solution: https://gist.github.com/lavakush-m-tiwari/aa46ee10459e2d7daf5b8bb634cf9d88
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #microsoft3
LeetCode
Rotate List - LeetCode
Can you solve this real interview question? Rotate List - Given the head of a linked list, rotate the list to the right by k places.
Example 1:
[https://assets.leetcode.com/uploads/2020/11/13/rotate1.jpg]
Input: head = [1,2,3,4,5], k = 2
Output: [4โฆ
Example 1:
[https://assets.leetcode.com/uploads/2020/11/13/rotate1.jpg]
Input: head = [1,2,3,4,5], k = 2
Output: [4โฆ
Day-14
Split Linked List in Parts
#725
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #apple2
Split Linked List in Parts
#725
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #apple2
LeetCode
Split Linked List in Parts - LeetCode
Can you solve this real interview question? Split Linked List in Parts - Given the head of a singly linked list and an integer k, split the linked list into k consecutive linked list parts.
The length of each part should be as equal as possible: no two partsโฆ
The length of each part should be as equal as possible: no two partsโฆ
Day-14(Solution)
Split Linked List in Parts
#725
Algorithm: LinkedList, two pointer
Solution: https://gist.github.com/lavakush-m-tiwari/5941bf2649c0738d0d059b3d3e0d308b
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #apple2
Split Linked List in Parts
#725
Algorithm: LinkedList, two pointer
Solution: https://gist.github.com/lavakush-m-tiwari/5941bf2649c0738d0d059b3d3e0d308b
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #apple2
LeetCode
Split Linked List in Parts - LeetCode
Can you solve this real interview question? Split Linked List in Parts - Given the head of a singly linked list and an integer k, split the linked list into k consecutive linked list parts.
The length of each part should be as equal as possible: no two partsโฆ
The length of each part should be as equal as possible: no two partsโฆ
Day-15
Remove Duplicates from Sorted List II
#83
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon8 #apple2
Remove Duplicates from Sorted List II
#83
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon8 #apple2
LeetCode
Remove Duplicates from Sorted List II - LeetCode
Can you solve this real interview question? Remove Duplicates from Sorted List II - Given the head of a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Return the linked list sorted asโฆ
Day-15 (Solution)
Remove Duplicates from Sorted List II
#83
Algorithm: LinkedList, two pointer
Solution : https://gist.github.com/lavakush-m-tiwari/e843e910ecda1ad1decba061bf7acc9a
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon8 #apple2
Remove Duplicates from Sorted List II
#83
Algorithm: LinkedList, two pointer
Solution : https://gist.github.com/lavakush-m-tiwari/e843e910ecda1ad1decba061bf7acc9a
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon8 #apple2
LeetCode
Remove Duplicates from Sorted List II - LeetCode
Can you solve this real interview question? Remove Duplicates from Sorted List II - Given the head of a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Return the linked list sorted asโฆ
Day-16
Odd Even Linked List
Leetcode #328
Algorithm: Binary Search, Divide and Conquer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #facebook6 #amazon4
Odd Even Linked List
Leetcode #328
Algorithm: Binary Search, Divide and Conquer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #facebook6 #amazon4
LeetCode
Odd Even Linked List - LeetCode
Can you solve this real interview question? Odd Even Linked List - Given the head of a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and return the reordered list.
The first node is consideredโฆ
The first node is consideredโฆ
Day-16 (Solution)
Odd Even Linked List
Leetcode #328
Algorithm: Binary Search, Divide and Conquer
Solution: https://gist.github.com/lavakush-m-tiwari/3a3d72bce0715986d89677ac36d2da09
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #facebook6 #amazon4
Odd Even Linked List
Leetcode #328
Algorithm: Binary Search, Divide and Conquer
Solution: https://gist.github.com/lavakush-m-tiwari/3a3d72bce0715986d89677ac36d2da09
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #facebook6 #amazon4
LeetCode
Odd Even Linked List - LeetCode
Can you solve this real interview question? Odd Even Linked List - Given the head of a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and return the reordered list.
The first node is consideredโฆ
The first node is consideredโฆ
Day-17
Linked List Cycle II
#141
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon5 #microsoft2
Linked List Cycle II
#141
Algorithm: LinkedList, two pointer
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon5 #microsoft2
LeetCode
Linked List Cycle II - LeetCode
Can you solve this real interview question? Linked List Cycle II - Given the head of a linked list, return the node where the cycle begins. If there is no cycle, return null.
There is a cycle in a linked list if there is some node in the list that can beโฆ
There is a cycle in a linked list if there is some node in the list that can beโฆ
Hello Everyone ๐
We at Techdose are giving opportunities to college students to become Campus Ambassadors and Social Influencers so that students who are new to this Computer Science world will be benefited with the right resources that we provide.
Perks :
On successful completion, you will get benefits (Stipend, Goodies, Discounts, and many other)
This is the chance to grow and improve your communication, social presence and at the same time earn perks. So what are you waiting for, just fill out this form and we will teach you out.
Form : https://forms.gle/sNpdxGbVhMvtd86RA
We at Techdose are giving opportunities to college students to become Campus Ambassadors and Social Influencers so that students who are new to this Computer Science world will be benefited with the right resources that we provide.
Perks :
This is the chance to grow and improve your communication, social presence and at the same time earn perks. So what are you waiting for, just fill out this form and we will teach you out.
Form : https://forms.gle/sNpdxGbVhMvtd86RA
Google Docs
Campus Ambassador Registration
Thanks for filling this form. We will reach out to you soon.
Day-17 (Solution)
Linked List Cycle II
#141
Algorithm: LinkedList, two pointer
Solution: https://gist.github.com/lavakush-m-tiwari/50c5058e8740436d2e262d6e79cd6cea
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon5 #microsoft2
Linked List Cycle II
#141
Algorithm: LinkedList, two pointer
Solution: https://gist.github.com/lavakush-m-tiwari/50c5058e8740436d2e262d6e79cd6cea
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon5 #microsoft2
LeetCode
Linked List Cycle II - LeetCode
Can you solve this real interview question? Linked List Cycle II - Given the head of a linked list, return the node where the cycle begins. If there is no cycle, return null.
There is a cycle in a linked list if there is some node in the list that can beโฆ
There is a cycle in a linked list if there is some node in the list that can beโฆ
Day-18
Design Twitter
#355
Algorithm: LinkedList, hashtable, heap
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #google2
Design Twitter
#355
Algorithm: LinkedList, hashtable, heap
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #google2
LeetCode
Design Twitter - LeetCode
Can you solve this real interview question? Design Twitter - Design a simplified version of Twitter where users can post tweets, follow/unfollow another user, and is able to see the 10 most recent tweets in the user's news feed.
Implement the Twitter class:โฆ
Implement the Twitter class:โฆ
Day-18 (Solution)
Design Twitter
#355
Algorithm: LinkedList, hashtable, heap
Solution: https://gist.github.com/lavakush-m-tiwari/e4e83f88d7707bae316babf69496c81f
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #google2
Design Twitter
#355
Algorithm: LinkedList, hashtable, heap
Solution: https://gist.github.com/lavakush-m-tiwari/e4e83f88d7707bae316babf69496c81f
Subscribe our Channel : https://www.youtube.com/c/TECHDOSE4u
Follow on Linkedin: https://www.linkedin.com/company/tech-dose
Please try the problem yourself and watch the video to learn the Algorithm ๐
Please SHARE this initiative with your friends as well ๐
#techdose #28DaysOfArray #interviewpreparation #arrays #dsa #MaxFreqLast6Months #amazon2 #google2
LeetCode
Design Twitter - LeetCode
Can you solve this real interview question? Design Twitter - Design a simplified version of Twitter where users can post tweets, follow/unfollow another user, and is able to see the 10 most recent tweets in the user's news feed.
Implement the Twitter class:โฆ
Implement the Twitter class:โฆ