#DAY_86 Day 86/90 ✅Done one question today - Rotate List. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode

twt_Kunal's tweet image. #DAY_86
Day 86/90 
✅Done one question today - Rotate List.

#LeetCode #BuildInPublic #DevJourney #90DaysOfCode

Day 22 : Valid Palindrome II 💫 Approach: Two pointers + one delete chance 🔁 Check from both ends, skip wisely, stay balanced ⚖️ A perfect reminder one mistake doesn’t break the whole logic 😉 #LeetCode #CPP #CodingLife #Developer

AnchalGupta009's tweet image. Day 22 : Valid Palindrome II 💫
Approach: Two pointers + one delete chance 🔁
Check from both ends, skip wisely, stay balanced ⚖️
A perfect reminder one mistake doesn’t break the whole logic 😉
#LeetCode #CPP #CodingLife #Developer

Day -57 of #100DaysOfCode solved: Problem: 1592. Rearrange Spaces Between Words on #leetcode

Aditya_Mittal_'s tweet image. Day -57 of #100DaysOfCode solved: 
Problem: 1592. Rearrange Spaces Between Words on #leetcode

Day #77 Update: - DevOps - Starting Dockerizing the Project - LeetCode: Two Coding Problems from Blind 75 #100DaysOfCode #LeetCode

_Tharun_G's tweet image. Day #77 Update:
-  DevOps - Starting Dockerizing the Project
- LeetCode: Two Coding Problems from Blind 75
#100DaysOfCode #LeetCode

📌 Day 25 Progress 📚 Stack topic studied & LC #84 (Hard) solved 💻 Revised Strings — LC #1781, #151, #68 (super tricky) + HackerRank Sherlock and Anagrams 📘 POTD #2273 ✅(2-3 methods) 🎯 Step 1, Lec 1 of #TUFWinterArc done! ✅ @takeUforward_ #100DaysOfCode #LeetCode #DSA

RahulSingh30070's tweet image. 📌 Day 25 Progress
📚 Stack topic studied & LC #84 (Hard) solved
💻 Revised Strings — LC #1781, #151, #68 (super tricky) + HackerRank Sherlock and Anagrams
📘 POTD #2273 ✅(2-3 methods)
🎯 Step 1, Lec 1 of #TUFWinterArc done! ✅ @takeUforward_ 
#100DaysOfCode #LeetCode #DSA

Solving LeetCode isn’t about speed — it’s about patterns. Master the thought process, not the syntax. Focus on: Arrays + Two Pointers Sliding Window Trees Graph Traversals Once you see the pattern → problems start repeating 😉 #LeetCode #DSA #kunika

MalhotraKunika's tweet image. Solving LeetCode isn’t about speed — it’s about patterns.

Master the thought process, not the syntax.

Focus on:

Arrays + Two Pointers

Sliding Window

Trees

Graph Traversals

Once you see the pattern → problems start repeating 😉

#LeetCode #DSA #kunika

The only way to improve in DSA is by pushing the limits of your processor,not your hard disk. Most of the good coders whom I know never made any notes while learning DSA.All they did was intense amount of practice, solving problems outside of their comfort zone. #leetcode #dsa


Do you guys make notes while watching tutorial?? Btw... try to guess what I'm learning!! #DSA #CodingJourney #LeetCode

YashSikarwar28's tweet image. Do you guys make notes while watching tutorial??

Btw... try to guess what I'm learning!!

#DSA #CodingJourney #LeetCode

Totally unexpected but super special! Got my LeetCode 100 Days Badge 2025 while solving a problem today 🏅 Can’t describe the happiness — small wins, big motivation 💪 #100DaysOfCode #LeetCode #CodingJourney #DevLife #Consistency

d_isha2003's tweet image. Totally unexpected but super special!
Got my LeetCode 100 Days Badge 2025 while solving a problem today 🏅
Can’t describe the happiness — small wins, big motivation 💪
#100DaysOfCode #LeetCode #CodingJourney #DevLife #Consistency

Day 22/100 ✅ Solved LeetCode 2273: Find Resultant Array After Removing Anagrams 🔹 Used sorting of characters to detect anagrams efficiently 🔹 Practiced string manipulation & vector handling 🔹 Interesting problem to strengthen logic building! #100DaysOfCode #Zigbee #LeetCode

Gitanjali7789's tweet image. Day 22/100 ✅
Solved LeetCode 2273: Find Resultant Array After Removing Anagrams
🔹 Used sorting of characters to detect anagrams efficiently
🔹 Practiced string manipulation & vector handling
🔹 Interesting problem to strengthen logic building! 

#100DaysOfCode #Zigbee #LeetCode

Day 60 of 100 days of code: Leetcode : Binary Subarrays With Sum #LearnInPublic #100DaysOfCode #LeetCode #DSA #leetcodedaily

VishwanshK's tweet image. Day 60 of 100 days of code:
Leetcode : Binary Subarrays With Sum
#LearnInPublic #100DaysOfCode #LeetCode #DSA #leetcodedaily

Ngl, but @LeetCode discussions are funnier than any other platforms.. 😂😂🥲🥲😭😭 #LeetCode

amit25says's tweet image. Ngl, but @LeetCode discussions are funnier than any other platforms..
😂😂🥲🥲😭😭

#LeetCode

Contest difficulty keeps changing every time, but one thing always stays the same, it’s always some new account or someone in their very first contest who ends up in the top 10. Look at this legend, shreyan ray must be his student, solved the whole contest in 4 mins. #leetcode

SwaDotDev's tweet image. Contest difficulty keeps changing every time, but one thing always stays the same, it’s always some new account or someone in their very first contest who ends up in the top 10.

Look at this legend, shreyan ray must be his student, solved the whole contest in 4 mins.
#leetcode
SwaDotDev's tweet image. Contest difficulty keeps changing every time, but one thing always stays the same, it’s always some new account or someone in their very first contest who ends up in the top 10.

Look at this legend, shreyan ray must be his student, solved the whole contest in 4 mins.
#leetcode

DSA grind 13-10-2025 -> Solved POTD LeetCode -> Solved 3 problems on Strings & dp - 3664 (medium, but not medium) - 87 (hard) - 44 (hard) Solving even 1 hard problem on my own makes me sleep the whole day😭 #LeetCode #DSA #100DaysOfCode

SwaDotDev's tweet image. DSA grind  13-10-2025

-> Solved POTD LeetCode
-> Solved 3 problems on Strings & dp
    - 3664 (medium, but not medium)
    - 87 (hard)
    - 44 (hard)

Solving even 1 hard problem on my own makes me sleep the whole day😭

#LeetCode #DSA #100DaysOfCode

Day 26 of LeetCode 75 Problem: 1372. Longest ZigZag Path in a Binary Tree Approach: Used recursion with parameters tracking direction (left/right), path length, and maximum result. Time:O(n) Space:O(h),where h is tree height. #LeetCode #75DaysChallenge #Day26 #DSA #BinaryTree

ANNISH_SEN's tweet image. Day 26 of LeetCode 75
Problem: 1372. Longest ZigZag Path in a Binary Tree
Approach:
Used recursion with parameters tracking direction (left/right), path length, and maximum result.
Time:O(n)
Space:O(h),where h is  tree height. 
#LeetCode #75DaysChallenge #Day26 #DSA #BinaryTree
ANNISH_SEN's tweet image. Day 26 of LeetCode 75
Problem: 1372. Longest ZigZag Path in a Binary Tree
Approach:
Used recursion with parameters tracking direction (left/right), path length, and maximum result.
Time:O(n)
Space:O(h),where h is  tree height. 
#LeetCode #75DaysChallenge #Day26 #DSA #BinaryTree

Day 29 of #100DaysOfDSA New week, new topic: Hashing & Sets 🔥 From @striver_79: ✅ Studied “Assign Cookies” Excited to dive into this new section, building stronger problem-solving intuition day by day 😌 #Day29 #LeetCode #Python

Topzee0o1's tweet image. Day 29 of #100DaysOfDSA

New week, new topic: Hashing & Sets 🔥

From @striver_79:
✅ Studied “Assign Cookies”

Excited to dive into this new section, building stronger problem-solving intuition day by day 😌

#Day29 #LeetCode #Python

#Day28 of #100DaysOfDSA 🚀 Wrapped up Stack & Queue 😎 From @striver_79: ✅ Studied Next Smaller Element ✅ Studied Trapping Rain Water Stack concepts finally clicking, logic’s coming together nicely 💪 #LeetCode #Python



🧠 Day 69 of #100DaysOfCode Solved “Intersection of Two Arrays II” 🔍 ✨ Used sorting + two-pointer approach to optimize from O(n²) ➜ O(n log n) Every day, one step closer to cleaner & faster code 🚀 #LeetCode #CPlusPlus #DSA #CodingJourney #ProblemSolving

shivam21102005's tweet image. 🧠 Day 69 of #100DaysOfCode
Solved “Intersection of Two Arrays II” 🔍
✨ Used sorting + two-pointer approach to optimize from O(n²) ➜ O(n log n)
Every day, one step closer to cleaner & faster code 🚀

#LeetCode #CPlusPlus #DSA #CodingJourney #ProblemSolving

🚀 Day 64 of #100DaysOfCode Solved LeetCode 55 – Jump Game using a greedy approach. Step by step, learning how to optimize logic and think efficiently 💪 #LeetCode #Python #ProblemSolving #MERNDeveloper #CodingJourney

d_isha2003's tweet image. 🚀 Day 64 of #100DaysOfCode
Solved LeetCode 55 – Jump Game using a greedy approach.
Step by step, learning how to optimize logic and think efficiently 💪
#LeetCode #Python #ProblemSolving #MERNDeveloper #CodingJourney

Day 22 : Valid Palindrome II 💫 Approach: Two pointers + one delete chance 🔁 Check from both ends, skip wisely, stay balanced ⚖️ A perfect reminder one mistake doesn’t break the whole logic 😉 #LeetCode #CPP #CodingLife #Developer

AnchalGupta009's tweet image. Day 22 : Valid Palindrome II 💫
Approach: Two pointers + one delete chance 🔁
Check from both ends, skip wisely, stay balanced ⚖️
A perfect reminder one mistake doesn’t break the whole logic 😉
#LeetCode #CPP #CodingLife #Developer

Day 22/100 ✅ Solved LeetCode 2273: Find Resultant Array After Removing Anagrams 🔹 Used sorting of characters to detect anagrams efficiently 🔹 Practiced string manipulation & vector handling 🔹 Interesting problem to strengthen logic building! #100DaysOfCode #Zigbee #LeetCode

Gitanjali7789's tweet image. Day 22/100 ✅
Solved LeetCode 2273: Find Resultant Array After Removing Anagrams
🔹 Used sorting of characters to detect anagrams efficiently
🔹 Practiced string manipulation & vector handling
🔹 Interesting problem to strengthen logic building! 

#100DaysOfCode #Zigbee #LeetCode

Day 51 of #100DaysOfCode solved 2 POTD on #GFG & #LeetCode Maximum Non-Adjacent Node Sum Use DFS and stored both possibilities for each node (include or exclude) in a pair Finally returned the max value from the pair 2273. Find Resultant Array After Removing Anagram #DSA #Tree

diwa810's tweet image. Day 51 of #100DaysOfCode 
solved 2 POTD on #GFG & #LeetCode 
Maximum Non-Adjacent Node Sum
Use DFS and stored both possibilities for each node (include or exclude) in a pair
Finally returned the max value from the pair
2273. Find Resultant Array After Removing Anagram
#DSA #Tree
diwa810's tweet image. Day 51 of #100DaysOfCode 
solved 2 POTD on #GFG & #LeetCode 
Maximum Non-Adjacent Node Sum
Use DFS and stored both possibilities for each node (include or exclude) in a pair
Finally returned the max value from the pair
2273. Find Resultant Array After Removing Anagram
#DSA #Tree

Solved Median of Two Sorted Arrays : Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array #LeetCode #Java #Coding #DSA

_Soumyadip_22's tweet image. Solved Median of Two Sorted Arrays :
Finally understood the intuition for Binary Search approach and why we always perform the search on the smaller array
#LeetCode #Java #Coding #DSA

day 22, still continued with Greedy problems #100DaysOfCode #DSA #LeetCode

cCraftsman_'s tweet image. day 22, still continued with Greedy problems #100DaysOfCode #DSA #LeetCode

Operation 15: Next Horizon 🌅 Day 7 of Week 15 🎉 Today's Progress ✅ • Solved LeetCode #2273 • Studied Cloud Computing Celebrated my Birthday 🎂 — a day filled with joy, gratitude, and reflections ✨ #NextHorizon #BirthdayVibes #LeetCode #CloudComputing #CodeWithShakish

shakish15564's tweet image. Operation 15: Next Horizon 🌅
Day 7 of Week 15 🎉

Today's Progress ✅
• Solved LeetCode #2273
• Studied Cloud Computing

Celebrated my Birthday 🎂 — a day filled with joy, gratitude, and reflections ✨

#NextHorizon #BirthdayVibes #LeetCode #CloudComputing #CodeWithShakish
shakish15564's tweet image. Operation 15: Next Horizon 🌅
Day 7 of Week 15 🎉

Today's Progress ✅
• Solved LeetCode #2273
• Studied Cloud Computing

Celebrated my Birthday 🎂 — a day filled with joy, gratitude, and reflections ✨

#NextHorizon #BirthdayVibes #LeetCode #CloudComputing #CodeWithShakish

#Day240 of coding: -leetcode POTD #DSA #leetcode

the__csy20's tweet image. #Day240 of coding:

-leetcode POTD 

#DSA #leetcode

#LeetCode Road to 1000

happyaviraj's tweet image. #LeetCode Road to 1000

🇮🇳🔹 LeetCode Daily Challenge 🧩 Problem: Find Resultant Array After Removing Anagrams 📘 LC No.: 2273 💡 Approach: 🌀 Reverse Stack Sweep 🔥 Day 672 Streak #LeetCode #Java #ProblemSolving #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava #DSA #100DaysOfCode

Kartscode's tweet image. 🇮🇳🔹 LeetCode Daily Challenge
🧩 Problem: Find Resultant Array After Removing Anagrams
📘 LC No.: 2273
💡 Approach: 🌀 Reverse Stack Sweep
🔥 Day 672 Streak
#LeetCode #Java #ProblemSolving #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava #DSA #100DaysOfCode

📌 Day 43 of #100DaysOfCode Solved: Minimum Time to Burn a Binary Tree from a Node (GFG), LeetCode Daily 3539, and LeetCode 222 – Count Complete Tree Nodes 🔥🌳 💬 Another tree-heavy day! Worked on BFS + recursion-based problems #LeetCode #DSA #LearnInPublic

ashayguptaa's tweet image. 📌 Day 43 of #100DaysOfCode

Solved: Minimum Time to Burn a Binary Tree from a Node (GFG), LeetCode Daily 3539, and LeetCode 222 – Count Complete Tree Nodes 🔥🌳

💬 Another tree-heavy day! Worked on BFS + recursion-based problems 
#LeetCode #DSA #LearnInPublic
ashayguptaa's tweet image. 📌 Day 43 of #100DaysOfCode

Solved: Minimum Time to Burn a Binary Tree from a Node (GFG), LeetCode Daily 3539, and LeetCode 222 – Count Complete Tree Nodes 🔥🌳

💬 Another tree-heavy day! Worked on BFS + recursion-based problems 
#LeetCode #DSA #LearnInPublic

Day 9 of coding until I get a job! ✅DSA - Leetcode Potd + 1 leetcode medium problem ✅Web Dev - Worked on my full-stack project Keep pushing!🚀 #100DaysOfCode #LeetCode #WebDevelopment #CareerGoals


🚀 Day 446 of Code 🚀 Solved : ✅ 2273. Find Resultant Array After Removing Anagrams #Day446 #LeetCode #DSA #ProblemSolving #StringAlgorithms #CodingJourney #100DaysOfCode #TechCommunity #Algorithms #DataStructures

Mohd_Saqib_'s tweet image. 🚀 Day 446 of Code 🚀

Solved :

✅ 2273. Find Resultant Array After Removing Anagrams

#Day446 #LeetCode #DSA #ProblemSolving #StringAlgorithms #CodingJourney #100DaysOfCode #TechCommunity #Algorithms #DataStructures
Mohd_Saqib_'s tweet image. 🚀 Day 446 of Code 🚀

Solved :

✅ 2273. Find Resultant Array After Removing Anagrams

#Day446 #LeetCode #DSA #ProblemSolving #StringAlgorithms #CodingJourney #100DaysOfCode #TechCommunity #Algorithms #DataStructures

📌 Day 42 of #100DaysOfCode Solved: Print All Nodes at Distance K in a Binary Tree and LeetCode Daily 3186 🌳 💬 Focused on tree traversal and distance-based problems today. The daily problem was a good mix of logic and implementation #LeetCode #DSA #LearnInPublic

ashayguptaa's tweet image. 📌 Day 42 of #100DaysOfCode

Solved: Print All Nodes at Distance K in a Binary Tree and LeetCode Daily 3186 🌳

💬 Focused on tree traversal and distance-based problems today. The daily problem was a good mix of logic and implementation
#LeetCode #DSA #LearnInPublic
ashayguptaa's tweet image. 📌 Day 42 of #100DaysOfCode

Solved: Print All Nodes at Distance K in a Binary Tree and LeetCode Daily 3186 🌳

💬 Focused on tree traversal and distance-based problems today. The daily problem was a good mix of logic and implementation
#LeetCode #DSA #LearnInPublic

📌 Day 41 of #100DaysOfCode Solved: Maximum Width of Binary Tree, Children Sum Property, and POTD – Taking Maximum Energy From the Mystic Dungeon ⚔️ 💬 Continued strengthening binary tree concepts and worked on today’s LeetCode POTD #LeetCode #DSA #LearnInPublic

ashayguptaa's tweet image. 📌 Day 41 of #100DaysOfCode

Solved: Maximum Width of Binary Tree, Children Sum Property, and POTD – Taking Maximum Energy From the Mystic Dungeon ⚔️

💬 Continued strengthening binary tree concepts and worked on today’s LeetCode POTD
#LeetCode #DSA #LearnInPublic
ashayguptaa's tweet image. 📌 Day 41 of #100DaysOfCode

Solved: Maximum Width of Binary Tree, Children Sum Property, and POTD – Taking Maximum Energy From the Mystic Dungeon ⚔️

💬 Continued strengthening binary tree concepts and worked on today’s LeetCode POTD
#LeetCode #DSA #LearnInPublic

📌 Day 40 of #100DaysOfCode Solved: Root to Node Path in Binary Tree, Lowest Common Ancestor (236), and POTD 3494 💬 Continued with binary tree problems — really enjoying how concepts like recursion and backtracking are connecting now! #LeetCode #DSA #LearnInPublic

ashayguptaa's tweet image. 📌 Day 40 of #100DaysOfCode

Solved: Root to Node Path in Binary Tree, Lowest Common Ancestor (236), and POTD 3494

💬 Continued with binary tree problems — really enjoying how concepts like recursion and backtracking are connecting now!
#LeetCode #DSA #LearnInPublic
ashayguptaa's tweet image. 📌 Day 40 of #100DaysOfCode

Solved: Root to Node Path in Binary Tree, Lowest Common Ancestor (236), and POTD 3494

💬 Continued with binary tree problems — really enjoying how concepts like recursion and backtracking are connecting now!
#LeetCode #DSA #LearnInPublic

#Day97 of grinding until I land a job! 🚀 - Solved these questions today: > Flatten Binary Tree to Linked List - Recursive > Flatten Binary Tree to Linked List - Iterative > Flatten Binary Tree to Linked List - Optimal #DSA #LeetCode #100DaysOfCode #striversheet

Wannabe_01_'s tweet image. #Day97 of grinding until I land a job! 🚀
- Solved these questions today:
> Flatten Binary Tree to Linked List - Recursive
> Flatten Binary Tree to Linked List - Iterative
> Flatten Binary Tree to Linked List - Optimal
#DSA #LeetCode #100DaysOfCode #striversheet
Wannabe_01_'s tweet image. #Day97 of grinding until I land a job! 🚀
- Solved these questions today:
> Flatten Binary Tree to Linked List - Recursive
> Flatten Binary Tree to Linked List - Iterative
> Flatten Binary Tree to Linked List - Optimal
#DSA #LeetCode #100DaysOfCode #striversheet
Wannabe_01_'s tweet image. #Day97 of grinding until I land a job! 🚀
- Solved these questions today:
> Flatten Binary Tree to Linked List - Recursive
> Flatten Binary Tree to Linked List - Iterative
> Flatten Binary Tree to Linked List - Optimal
#DSA #LeetCode #100DaysOfCode #striversheet

#DAY_86 Day 86/90 ✅Done one question today - Rotate List. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode

twt_Kunal's tweet image. #DAY_86
Day 86/90 
✅Done one question today - Rotate List.

#LeetCode #BuildInPublic #DevJourney #90DaysOfCode

Day 22 : Valid Palindrome II 💫 Approach: Two pointers + one delete chance 🔁 Check from both ends, skip wisely, stay balanced ⚖️ A perfect reminder one mistake doesn’t break the whole logic 😉 #LeetCode #CPP #CodingLife #Developer

AnchalGupta009's tweet image. Day 22 : Valid Palindrome II 💫
Approach: Two pointers + one delete chance 🔁
Check from both ends, skip wisely, stay balanced ⚖️
A perfect reminder one mistake doesn’t break the whole logic 😉
#LeetCode #CPP #CodingLife #Developer

Day -57 of #100DaysOfCode solved: Problem: 1592. Rearrange Spaces Between Words on #leetcode

Aditya_Mittal_'s tweet image. Day -57 of #100DaysOfCode solved: 
Problem: 1592. Rearrange Spaces Between Words on #leetcode

📅 Oct-6 🍁⛈️ Days 191/365 Leetcode Q 32. Longest Valid Parentheses #LeetCode #365days #Python #DSA

laxmankumarIITB's tweet image. 📅  Oct-6   

🍁⛈️   Days 191/365  
Leetcode Q 32. Longest Valid Parentheses
 #LeetCode #365days  #Python #DSA

📌 Day 25 Progress 📚 Stack topic studied & LC #84 (Hard) solved 💻 Revised Strings — LC #1781, #151, #68 (super tricky) + HackerRank Sherlock and Anagrams 📘 POTD #2273 ✅(2-3 methods) 🎯 Step 1, Lec 1 of #TUFWinterArc done! ✅ @takeUforward_ #100DaysOfCode #LeetCode #DSA

RahulSingh30070's tweet image. 📌 Day 25 Progress
📚 Stack topic studied & LC #84 (Hard) solved
💻 Revised Strings — LC #1781, #151, #68 (super tricky) + HackerRank Sherlock and Anagrams
📘 POTD #2273 ✅(2-3 methods)
🎯 Step 1, Lec 1 of #TUFWinterArc done! ✅ @takeUforward_ 
#100DaysOfCode #LeetCode #DSA

Day 20 — Reverse String 🔁 Two pointers, one elegant swap ✨ Simple logic, satisfying result 😌 Sometimes all you need… is a little reverse in life too 😅 #LeetCode #CPP #CodingLife #Developer

AnchalGupta009's tweet image. Day 20 — Reverse String 🔁
Two pointers, one elegant swap ✨
Simple logic, satisfying result 😌
Sometimes all you need… is a little reverse in life too 😅
#LeetCode #CPP #CodingLife #Developer

Day 22 of #100DaysOfCode Completed today’s LeetCode problem — making it 105 consecutive days of daily problem-solving! #LeetCode #CodingJourney #Zigbee #100DaysOfCodeChallenge

RojalineSa93267's tweet image. Day 22 of #100DaysOfCode  Completed today’s LeetCode problem — making it 105 consecutive days of daily problem-solving!                   
#LeetCode #CodingJourney #Zigbee #100DaysOfCodeChallenge
RojalineSa93267's tweet image. Day 22 of #100DaysOfCode  Completed today’s LeetCode problem — making it 105 consecutive days of daily problem-solving!                   
#LeetCode #CodingJourney #Zigbee #100DaysOfCodeChallenge

Day #77 Update: - DevOps - Starting Dockerizing the Project - LeetCode: Two Coding Problems from Blind 75 #100DaysOfCode #LeetCode

_Tharun_G's tweet image. Day #77 Update:
-  DevOps - Starting Dockerizing the Project
- LeetCode: Two Coding Problems from Blind 75
#100DaysOfCode #LeetCode

Do you guys make notes while watching tutorial?? Btw... try to guess what I'm learning!! #DSA #CodingJourney #LeetCode

YashSikarwar28's tweet image. Do you guys make notes while watching tutorial??

Btw... try to guess what I'm learning!!

#DSA #CodingJourney #LeetCode

Valid Sudoku ✅ Day 14 ➝ Accepted ✅ Peace of mind ➝ priceless 😌 #LeetCode #CPP #CodingLife #Developer #DevCommunity

AnchalGupta009's tweet image. Valid Sudoku ✅
Day 14 ➝ Accepted ✅
Peace of mind ➝ priceless 😌
#LeetCode #CPP #CodingLife #Developer  #DevCommunity

Solving LeetCode isn’t about speed — it’s about patterns. Master the thought process, not the syntax. Focus on: Arrays + Two Pointers Sliding Window Trees Graph Traversals Once you see the pattern → problems start repeating 😉 #LeetCode #DSA #kunika

MalhotraKunika's tweet image. Solving LeetCode isn’t about speed — it’s about patterns.

Master the thought process, not the syntax.

Focus on:

Arrays + Two Pointers

Sliding Window

Trees

Graph Traversals

Once you see the pattern → problems start repeating 😉

#LeetCode #DSA #kunika

Day 31 of #100DaysOfCode Tackled removed anagram . #LeetCode #Java

sam1368296's tweet image. Day 31  of #100DaysOfCode
 Tackled removed anagram . #LeetCode #Java

Day 22/100 ✅ Solved LeetCode 2273: Find Resultant Array After Removing Anagrams 🔹 Used sorting of characters to detect anagrams efficiently 🔹 Practiced string manipulation & vector handling 🔹 Interesting problem to strengthen logic building! #100DaysOfCode #Zigbee #LeetCode

Gitanjali7789's tweet image. Day 22/100 ✅
Solved LeetCode 2273: Find Resultant Array After Removing Anagrams
🔹 Used sorting of characters to detect anagrams efficiently
🔹 Practiced string manipulation & vector handling
🔹 Interesting problem to strengthen logic building! 

#100DaysOfCode #Zigbee #LeetCode

🚀 Today I got my 100Days #LeetCode Badge 😎 Also learned new topics. Really happy today 😁. #100DaysOfCode #Java

Vishesh_DS's tweet image. 🚀 Today I got my 100Days #LeetCode Badge 😎 Also learned new topics.
Really happy today 😁.
#100DaysOfCode #Java

🎯 Proud to share that I’ve earned the 50 Days Leetcode Badge 2025. Staying consistent with daily problem solving has helped me improve my logic and confidence. Excited to continue this journey and aim for the 100 Days Badge next🚀 #LeetCode #DSA #100DaysOfCode #buildinpublic

PriyanshuK25974's tweet image. 🎯 Proud to share that I’ve earned the 50 Days Leetcode Badge 2025.

Staying consistent with daily problem solving has helped me improve my logic and confidence.

Excited to continue this journey and aim for the 100 Days Badge next🚀

#LeetCode #DSA #100DaysOfCode #buildinpublic

100 Days of LeetCode Badge, finally :) #LeetCode #CP #DSA

debmallar's tweet image. 100 Days of LeetCode Badge, finally :)
#LeetCode #CP #DSA

📅 Oct - 10 🍁⛈️ Days 194/365 Leetcode Q 135. Candy #LeetCode #365days #pythonprogramming #Coding

laxmankumarIITB's tweet image. 📅  Oct - 10

🍁⛈️  Days 194/365         
Leetcode Q 135. Candy 
#LeetCode #365days #pythonprogramming #Coding

Loading...

Something went wrong.


Something went wrong.


United States Trends