#dailycodechallenge search results

DSA #dailycodechallenge #105 Remove Duplicates from a sorted LL Tip : Point curr to next next if you find duplicate else move curr to unique node #DSAWithKunal #leetcode #linkedlist #100DaysOfCode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#105 Remove Duplicates from a sorted LL
Tip : Point curr to next next if you find duplicate else move curr to unique node
#DSAWithKunal #leetcode #linkedlist #100DaysOfCode
Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#105 Remove Duplicates from a sorted LL
Tip : Point curr to next next if you find duplicate else move curr to unique node
#DSAWithKunal #leetcode #linkedlist #100DaysOfCode

🚀 Day 16 of #DailyCodeChallenge! Today, I tackled the "Find All Anagrams in a String" problem. 🧑‍💻 Used the Sliding Window algorithm to identify all starting indices of anagrams efficiently. ✅ Feeling accomplished! Can't wait to take on tomorrow's challenge #100DaysOfCode

PremNavnat56636's tweet image. 🚀 Day 16 of #DailyCodeChallenge!

Today, I tackled the "Find All Anagrams in a String" problem. 🧑‍💻 Used the Sliding Window algorithm to identify all starting indices of anagrams efficiently.
✅ Feeling accomplished! Can't wait to take on tomorrow's challenge
   #100DaysOfCode
PremNavnat56636's tweet image. 🚀 Day 16 of #DailyCodeChallenge!

Today, I tackled the "Find All Anagrams in a String" problem. 🧑‍💻 Used the Sliding Window algorithm to identify all starting indices of anagrams efficiently.
✅ Feeling accomplished! Can't wait to take on tomorrow's challenge
   #100DaysOfCode

DSA #dailycodechallenge #109 Partition List Tip : Maintain relative order so just have small in one LL & big & link both #DSAWithKunal #100DayChallenge

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#109 Partition List
Tip : Maintain relative order so just have small in one LL & big & link both #DSAWithKunal #100DayChallenge

DSA #dailycodechallenge #114 Split LL in parts Tip : Possible parts is len/k & extras to be shared is len%k #DSAWithKunal #100DaysOfCode #linkedlist

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#114 Split LL in parts
Tip : Possible parts is len/k & extras to be shared is len%k
#DSAWithKunal #100DaysOfCode #linkedlist
Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#114 Split LL in parts
Tip : Possible parts is len/k & extras to be shared is len%k
#DSAWithKunal #100DaysOfCode #linkedlist

DSA #dailycodechallenge #100 Delete the MIddle Node Tip : Use slow & fast pointer , also track slow -1; #DSAWithKunal #100daysofcoding #linkedlist #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#100 Delete the MIddle Node
Tip : Use slow & fast pointer , also track slow -1;
#DSAWithKunal #100daysofcoding #linkedlist #leetcode

DSA #dailycodechallenge Easy Problems #118 Binary to Decimal #119 Find intersection point in 2 LLs #DSAWithKunal #linkedlist #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
Easy Problems
#118 Binary to Decimal #119 Find intersection point in 2 LLs
#DSAWithKunal #linkedlist #leetcode
Imbhavaniprasad's tweet image. DSA #dailycodechallenge
Easy Problems
#118 Binary to Decimal #119 Find intersection point in 2 LLs
#DSAWithKunal #linkedlist #leetcode

DSA #dailycodechallenge #106 Remove Duplicates from Sorted LL II Tip : Store duplicate in a variable #DSAWithKunal #leetcode #linkedlist #100DaysOfCode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#106 Remove Duplicates from Sorted LL II
Tip : Store duplicate in a variable
#DSAWithKunal #leetcode #linkedlist #100DaysOfCode

DSA #dailycodechallenge #110 Reverse Nodes in K groups Tip : Same as Reverse LL II ,just do the same in groups #DSAWithKunal #100daysofcoding #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#110 Reverse Nodes in K groups
Tip : Same as Reverse LL II ,just do the same in groups
#DSAWithKunal #100daysofcoding #leetcode

DSA #dailycodechallenge #117 All O`one Data Structure Tip : Check LFU Cache (key to frequency & frequency to keys concept) #DSAWithKunal #100DaysOfCode #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#117 All O`one Data Structure
Tip : Check LFU Cache (key to frequency & frequency to keys concept)
#DSAWithKunal #100DaysOfCode #leetcode

DSA #dailycodechallenge #113 Next Greater Node In Linked List Tip : Start from the end & remove if peek < curr index value & assign the peek value if it's > curr else 0; #DSAWithKunal #100DaysOfCode #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#113 Next Greater Node In Linked List
Tip : Start from the end &amp;amp; remove if peek &amp;lt; curr index value &amp;amp; assign the peek value if it&apos;s &amp;gt; curr else 0;
#DSAWithKunal #100DaysOfCode #leetcode

February has been a rollercoaster. I meant the DCC on leetcode. Wrapping up february with a win!! #leetcode #dailycodechallenge #February2025

Jyothishree2k58's tweet image. February has been a rollercoaster.

I meant the DCC on leetcode.
Wrapping up february with a win!!

#leetcode #dailycodechallenge #February2025

DSA #dailycodechallenge #115 Find the Minimum and Maximum Number of Nodes Between Critical Points Tip : Push all critical points , find min & max distance & return; #DSAWithKunal #100DaysOfCode #linkedlist #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#115 Find the Minimum and Maximum Number of Nodes Between Critical Points
Tip : Push all critical points , find min &amp;amp; max distance &amp;amp; return;
#DSAWithKunal #100DaysOfCode #linkedlist #leetcode

DSA #dailycodechallenge #101 Palindrom LL Tip : Reverse 2nd half & compare 1st & 2nd half values as you increment till you reach null; #DSAWithKunal #linkedlist #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#101 Palindrom LL
Tip : Reverse 2nd half &amp;amp; compare 1st &amp;amp; 2nd half values as you increment till you reach null;
#DSAWithKunal #linkedlist #leetcode

DSA #dailycodechallenge #111 Remove Zero Sum Consecutive Nodes I love this problem 🤩 Tip : Find repeated prefix sum & link first found prefix sum to the last found same prefix sum's next node🤓 #DSAWithKunal #100DaysOfCode #leetcode #linkedlist

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#111 Remove Zero Sum Consecutive Nodes
I love this problem 🤩
Tip : Find repeated prefix sum &amp;amp; link first found prefix sum to the last found same prefix sum&apos;s next node🤓
#DSAWithKunal #100DaysOfCode #leetcode #linkedlist

DSA #dailycodechallenge #102 Flatten a Multilevel Doubly Linked List Tip : Find the tail at every child list & link it's prev & curr to the Node with child list & next to it. Just Manipulate. Recursion is also cool; #DSAWithKunal #100DaysOfCode #leetcode #linkedlist

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#102 Flatten a Multilevel Doubly Linked List
Tip : Find the tail at every child list &amp;amp; link it&apos;s prev &amp;amp; curr to the Node with child list &amp;amp; next to it. Just Manipulate. Recursion is also cool;
#DSAWithKunal #100DaysOfCode #leetcode 
#linkedlist
Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#102 Flatten a Multilevel Doubly Linked List
Tip : Find the tail at every child list &amp;amp; link it&apos;s prev &amp;amp; curr to the Node with child list &amp;amp; next to it. Just Manipulate. Recursion is also cool;
#DSAWithKunal #100DaysOfCode #leetcode 
#linkedlist

🚀 Day 16 of #DailyCodeChallenge! Today, I tackled the "Find All Anagrams in a String" problem. 🧑‍💻 Used the Sliding Window algorithm to identify all starting indices of anagrams efficiently. ✅ Feeling accomplished! Can't wait to take on tomorrow's challenge #100DaysOfCode

PremNavnat56636's tweet image. 🚀 Day 16 of #DailyCodeChallenge!

Today, I tackled the &quot;Find All Anagrams in a String&quot; problem. 🧑‍💻 Used the Sliding Window algorithm to identify all starting indices of anagrams efficiently.
✅ Feeling accomplished! Can&apos;t wait to take on tomorrow&apos;s challenge
   #100DaysOfCode
PremNavnat56636's tweet image. 🚀 Day 16 of #DailyCodeChallenge!

Today, I tackled the &quot;Find All Anagrams in a String&quot; problem. 🧑‍💻 Used the Sliding Window algorithm to identify all starting indices of anagrams efficiently.
✅ Feeling accomplished! Can&apos;t wait to take on tomorrow&apos;s challenge
   #100DaysOfCode

🚀 Day 15 of #DailyCodeChallenge! Today, I tackled the "Valid Parentheses" problem. 🧑‍💻 Used a stack to ensure every opening bracket has a matching closing bracket in the correct order. ✅ Feeling accomplished! #100DaysOfCode #CodingJourney #Cplusplus #Algorithms

PremNavnat56636's tweet image. 🚀 Day 15 of #DailyCodeChallenge!

Today, I tackled the &quot;Valid Parentheses&quot; problem. 🧑‍💻 Used a stack to ensure every opening bracket has a matching closing bracket in the correct order.

✅ Feeling accomplished!

#100DaysOfCode #CodingJourney #Cplusplus #Algorithms

🚀 Day 15 of #DailyCodeChallenge! Today, I tackled the "Valid Parentheses" problem. 🧑‍💻 Used a stack to ensure every opening bracket has a matching closing bracket in the correct order. ✅ Feeling accomplished! #100DaysOfCode #CodingJourney #Cplusplus #Algorithms

PremNavnat56636's tweet image. 🚀 Day 15 of #DailyCodeChallenge!

Today, I tackled the &quot;Valid Parentheses&quot; problem. 🧑‍💻 Used a stack to ensure every opening bracket has a matching closing bracket in the correct order.

✅ Feeling accomplished!

#100DaysOfCode #CodingJourney #Cplusplus #Algorithms

At this point you might as well call it #DailyCodeChallenge 😆 Great Going 🚀.. Let's Connect


I am starting daily code challenge #processinganengineer #dailycodechallenge where I will share all my learnings and targets which will boost my motivation for coding and love for engineering. I love to be part of this struggling yet satisfying journey


No results for "#dailycodechallenge"

DSA #dailycodechallenge #105 Remove Duplicates from a sorted LL Tip : Point curr to next next if you find duplicate else move curr to unique node #DSAWithKunal #leetcode #linkedlist #100DaysOfCode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#105 Remove Duplicates from a sorted LL
Tip : Point curr to next next if you find duplicate else move curr to unique node
#DSAWithKunal #leetcode #linkedlist #100DaysOfCode
Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#105 Remove Duplicates from a sorted LL
Tip : Point curr to next next if you find duplicate else move curr to unique node
#DSAWithKunal #leetcode #linkedlist #100DaysOfCode

DSA #dailycodechallenge #114 Split LL in parts Tip : Possible parts is len/k & extras to be shared is len%k #DSAWithKunal #100DaysOfCode #linkedlist

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#114 Split LL in parts
Tip : Possible parts is len/k &amp;amp; extras to be shared is len%k
#DSAWithKunal #100DaysOfCode #linkedlist
Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#114 Split LL in parts
Tip : Possible parts is len/k &amp;amp; extras to be shared is len%k
#DSAWithKunal #100DaysOfCode #linkedlist

DSA #dailycodechallenge #100 Delete the MIddle Node Tip : Use slow & fast pointer , also track slow -1; #DSAWithKunal #100daysofcoding #linkedlist #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#100 Delete the MIddle Node
Tip : Use slow &amp;amp; fast pointer , also track slow -1;
#DSAWithKunal #100daysofcoding #linkedlist #leetcode

DSA #dailycodechallenge Easy Problems #118 Binary to Decimal #119 Find intersection point in 2 LLs #DSAWithKunal #linkedlist #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
Easy Problems
#118 Binary to Decimal #119 Find intersection point in 2 LLs
#DSAWithKunal #linkedlist #leetcode
Imbhavaniprasad's tweet image. DSA #dailycodechallenge
Easy Problems
#118 Binary to Decimal #119 Find intersection point in 2 LLs
#DSAWithKunal #linkedlist #leetcode

DSA #dailycodechallenge #106 Remove Duplicates from Sorted LL II Tip : Store duplicate in a variable #DSAWithKunal #leetcode #linkedlist #100DaysOfCode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#106 Remove Duplicates from Sorted LL II
Tip : Store duplicate in a variable
#DSAWithKunal #leetcode #linkedlist #100DaysOfCode

DSA #dailycodechallenge #110 Reverse Nodes in K groups Tip : Same as Reverse LL II ,just do the same in groups #DSAWithKunal #100daysofcoding #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#110 Reverse Nodes in K groups
Tip : Same as Reverse LL II ,just do the same in groups
#DSAWithKunal #100daysofcoding #leetcode

DSA #dailycodechallenge #109 Partition List Tip : Maintain relative order so just have small in one LL & big & link both #DSAWithKunal #100DayChallenge

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#109 Partition List
Tip : Maintain relative order so just have small in one LL &amp;amp; big &amp;amp; link both #DSAWithKunal #100DayChallenge

DSA #dailycodechallenge #117 All O`one Data Structure Tip : Check LFU Cache (key to frequency & frequency to keys concept) #DSAWithKunal #100DaysOfCode #leetcode

Imbhavaniprasad's tweet image. DSA #dailycodechallenge
#117 All O`one Data Structure
Tip : Check LFU Cache (key to frequency &amp;amp; frequency to keys concept)
#DSAWithKunal #100DaysOfCode #leetcode

Loading...

Something went wrong.


Something went wrong.


United States Trends