#leetcode 搜尋結果

Day 88 ⚡ Back to combining numbers — but this time, no repeats allowed! 🚫🔢 Handled duplicates like a pro and found all unique ways to hit the target 🎯 #100DaysOfCode #LeetCode

SaurabhSin99392's tweet image. Day 88 ⚡
Back to combining numbers — but this time, no repeats allowed! 🚫🔢
Handled duplicates like a pro and found all unique ways to hit the target 🎯
#100DaysOfCode #LeetCode

100 days streak done on LeetCode ✨💪 See you at 2⃣0️⃣0️⃣ #DSA #LeetCode

y_krishnanand's tweet image. 100 days streak done on LeetCode ✨💪
 
See you at 2⃣0️⃣0️⃣

#DSA #LeetCode

175 problems ✅ 100 days 🏆 47-day streak 🔥 I started with one rule — show up every single day. If you’re learning DSA, remember: → Pick one language → Learn the basics → Stay consistent Consistency > Intensity. Keep grinding 👨‍💻 #LeetCode #DevLife #Consistency

yaswanthsure2's tweet image. 175 problems ✅
100 days 🏆
47-day streak 🔥

I started with one rule — show up every single day.
If you’re learning DSA, remember:
→ Pick one language
→ Learn the basics
→ Stay consistent

Consistency > Intensity.
Keep grinding 👨‍💻

#LeetCode  #DevLife #Consistency

#Day242 of coding: -leetcode POTD #DSA #LeetCode

the__csy20's tweet image. #Day242 of coding:

-leetcode POTD 

#DSA #LeetCode

#DAY_89 Day 89/90 ✅Done two questions today. (i) Intersection of Two Arrays (ii) Intersection of Two Arrays II #LeetCode #BuildInPublic #DevJourney #90DaysOfCode

twt_Kunal's tweet image. #DAY_89
Day 89/90    
✅Done two questions today.
(i)  Intersection of Two Arrays
(ii) Intersection of Two Arrays II

#LeetCode #BuildInPublic #DevJourney #90DaysOfCode
twt_Kunal's tweet image. #DAY_89
Day 89/90    
✅Done two questions today.
(i)  Intersection of Two Arrays
(ii) Intersection of Two Arrays II

#LeetCode #BuildInPublic #DevJourney #90DaysOfCode

👨🏻‍💻Day 81/100 ~💻Dot env files on back-end ~💻Find the number that appears odd number of times #100DaysOfCode #DSA #leetcode #webdev

AnuragBuilds's tweet image. 👨🏻‍💻Day 81/100

~💻Dot env files on back-end
~💻Find the number that appears odd number of times

#100DaysOfCode #DSA #leetcode #webdev
AnuragBuilds's tweet image. 👨🏻‍💻Day 81/100

~💻Dot env files on back-end
~💻Find the number that appears odd number of times

#100DaysOfCode #DSA #leetcode #webdev

📌 Day 27 Progress 📚 Queue topic studied — implementations for Circular, Circular+Deque & Deque 🔄 💻 Stack Questions — LC #901, #1003, #394, #85, #739, #71 🧠 🧩 POTD — LC #3350 ✅ 🎯 Step-1, Lec-3 of #TUFWinterArc done! ✅ @takeUforward_ #100DaysOfCode #LeetCode #DSA #Coding

RahulSingh30070's tweet image. 📌 Day 27 Progress
📚 Queue topic studied — implementations for Circular, Circular+Deque & Deque 🔄
💻 Stack Questions — LC #901, #1003, #394, #85, #739, #71 🧠
🧩 POTD — LC #3350 ✅
🎯 Step-1, Lec-3 of #TUFWinterArc done! ✅
@takeUforward_
#100DaysOfCode #LeetCode #DSA #Coding

💻 #Day6 of my DSA grind Problem: Valid Triangle Number Approach: Sort + Two Pointer 🧠 Logic: For every largest side c, Move two pointers to find (a,b) such that a + b > c Add (j - i) when valid ✅ ⏱️O(n²) | 💪 Optimized from brute force O(n³) #DSA #LeetCode #100DaysOfCode #CPP

bitterbhavesh's tweet image. 💻 #Day6 of my DSA grind
Problem: Valid Triangle Number
Approach: Sort + Two Pointer 🧠
Logic:
For every largest side c,
Move two pointers to find (a,b) such that a + b > c
Add (j - i) when valid ✅
⏱️O(n²) | 💪 Optimized from brute force O(n³)
#DSA #LeetCode #100DaysOfCode #CPP

11/150 NeetCode 🚀 Solved Container With Most Water Problem. Used the two-pointer technique expanding inward from both ends to find the max area efficiently. 📊 Time: O(n) 📦 Space: O(1) #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 11/150 NeetCode 🚀

Solved Container With Most Water Problem.
Used the two-pointer technique
expanding inward from both ends to find the max area efficiently.

📊 Time: O(n)
📦 Space: O(1)

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 11/150 NeetCode 🚀

Solved Container With Most Water Problem.
Used the two-pointer technique
expanding inward from both ends to find the max area efficiently.

📊 Time: O(n)
📦 Space: O(1)

#NeetCode150 #LeetCode #100DaysOfCode

10/150 🚀 Solved Two Sum II (Input already Sorted). I utilized includes and indexOf, patched for duplicates. 📊 Time: O(n²) 📦 Space: O(1) It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀. #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 10/150 🚀

Solved Two Sum II (Input already Sorted).
I utilized includes and indexOf, patched for duplicates.

📊 Time: O(n²)
📦 Space: O(1)

It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀.

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 10/150 🚀

Solved Two Sum II (Input already Sorted).
I utilized includes and indexOf, patched for duplicates.

📊 Time: O(n²)
📦 Space: O(1)

It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀.

#NeetCode150 #LeetCode #100DaysOfCode


🇮🇳🔹 LeetCode Daily Challenge 🧩 Problem: Adjacent Increasing Subarrays Detection II 📘 LC 3350 💡 Two-Phase Increasing Subarray ⚡ 🔥 Day 674 Streak ❤️Like |🔍 Follow @Kartscode #LeetCode #Java #DSA #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava

Kartscode's tweet image. 🇮🇳🔹 LeetCode Daily Challenge
🧩 Problem: Adjacent Increasing Subarrays Detection II
📘 LC 3350
💡 Two-Phase Increasing Subarray ⚡
🔥 Day 674 Streak 
❤️Like |🔍 Follow @Kartscode
#LeetCode #Java #DSA #DailyChallenge #TechStudent #CodingJourney #BuildInPublic #DSAWithJava

Day 66 &67 of my #100DaysOfCode challenge!🚀 ✅Problem no. --> 3350 , 2273 #LeetCode #DSA ✅Infix to postfix and postfix to infix Conversions with stack #buildinpublic #developing #learningtoearning #CONNECT

adityacs22's tweet image. Day 66 &67 of my #100DaysOfCode challenge!🚀 

✅Problem no. --> 3350 , 2273 #LeetCode #DSA 
✅Infix to postfix and postfix to infix Conversions with stack

#buildinpublic #developing #learningtoearning #CONNECT
adityacs22's tweet image. Day 66 &67 of my #100DaysOfCode challenge!🚀 

✅Problem no. --> 3350 , 2273 #LeetCode #DSA 
✅Infix to postfix and postfix to infix Conversions with stack

#buildinpublic #developing #learningtoearning #CONNECT

#Day10 of #100DaysOfCode 🚀 Even during mid-sem exams, managed to stay consistent and solve 2 questions today 💪 1️⃣ Missing and Repeating No 2️⃣ Merge Intervals Hectic days, but small progress every day counts! ⚡ #LeetCode #Striver #DSA #CodingJourney #TUFWinterArc @striver_79

itsnazarealam's tweet image. #Day10 of #100DaysOfCode 🚀
Even during mid-sem exams, managed to stay consistent and solve 2 questions today 💪
1️⃣ Missing and Repeating No
2️⃣ Merge Intervals
Hectic days, but small progress every day counts! ⚡
#LeetCode #Striver #DSA #CodingJourney #TUFWinterArc @striver_79
itsnazarealam's tweet image. #Day10 of #100DaysOfCode 🚀
Even during mid-sem exams, managed to stay consistent and solve 2 questions today 💪
1️⃣ Missing and Repeating No
2️⃣ Merge Intervals
Hectic days, but small progress every day counts! ⚡
#LeetCode #Striver #DSA #CodingJourney #TUFWinterArc @striver_79

👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya ! Focused on problem-solving through #LeetCode Solved: 🔹 Add Digits 🔹 Leap Year 🔹 Reverse Integer 🔹 Overflow Debug + Fix 🔹 Power of 2 🔹 Sqrt(X) 🔹 Palindrome Check Each problem = better logic 💪 #100DaysOfCode

harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…
harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…
harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…
harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…

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

Caught solving LeetCode 662 in class 🥲 Because trees won’t traverse themselves 🌲💪 #coding #LeetCode #100DaysOfCode

jv_1008's tweet image. Caught solving LeetCode 662 in class 🥲
Because trees won’t traverse themselves 🌲💪
#coding #LeetCode 
#100DaysOfCode

Day 45/100 of Consistency 🔥 Swam through “ Adjacent Increasing Subarrays Detection II"📷 #LeetCode #POTD streak goes on! 100-day challenge looking more real every day 📷 🏁

ASHISHK3712's tweet image. Day 45/100 of Consistency 🔥
Swam through “ Adjacent Increasing Subarrays Detection II"📷 
#LeetCode #POTD streak goes on!      
100-day challenge looking more real every day 📷 🏁

Day 26 | Solved today’s problem on binary search + subarray analysis — it really tested how carefully you handle sequence logic and edge cases.Took some dry runs to spot why the counter reset was misbehaving — but finally nailed it! #100DaysOfCode #LeetCode #Java #CodingStreak

lokesh_w02's tweet image. Day 26 | Solved today’s problem on binary search + subarray analysis — it really tested how carefully you handle sequence logic and edge cases.Took some dry runs to spot why the counter reset was misbehaving — but finally nailed it! #100DaysOfCode #LeetCode #Java #CodingStreak

#LeetCode Question of the Day — 3350 Adjacent Increasing Subarrays Detection II Given an array, find the max length k where two adjacent subarrays of length k are both strictly increasing #LeetCode #Java #CodingJourney

meranaamkhann's tweet image. #LeetCode Question of the Day — 3350
 Adjacent Increasing Subarrays Detection II
Given an array, find the max length k where two adjacent subarrays of length k are both strictly increasing
#LeetCode #Java #CodingJourney

Day4 of #TUFWinterArc Find Minimum in Rotated Sorted Array Binary search logic: If nums[mid] > nums[right] → min lies right Else → min lies left (including mid) TC: O(log n) SC: O(1) #LeetCode #CodingChallenge #Learinpublic #100DaysOfCode #TUFWinterArc @takeUforward_

Kritikaj041's tweet image. Day4 of #TUFWinterArc 
Find Minimum in Rotated Sorted Array

Binary search logic:
If nums[mid] > nums[right] → min lies right
Else → min lies left (including mid)
TC: O(log n)
SC: O(1)
#LeetCode #CodingChallenge #Learinpublic #100DaysOfCode #TUFWinterArc 
@takeUforward_
Kritikaj041's tweet image. Day4 of #TUFWinterArc 
Find Minimum in Rotated Sorted Array

Binary search logic:
If nums[mid] > nums[right] → min lies right
Else → min lies left (including mid)
TC: O(log n)
SC: O(1)
#LeetCode #CodingChallenge #Learinpublic #100DaysOfCode #TUFWinterArc 
@takeUforward_

🚀 Just crushed LeetCode 42 (Trapping Rain Water) using the two-pointer approach in C++! 💻 Big thanks to CoderArmy and the GOAT Rohit Negi bhaiya for the awesome DSA lessons on YouTube! 🙌 #LeetCode #DSA #CodingJourney #CoderArmy #Consistency #Homework

JeetKumarD35856's tweet image. 🚀 Just crushed LeetCode 42 (Trapping Rain Water) using the two-pointer approach in C++! 💻 Big thanks to CoderArmy and the GOAT Rohit Negi bhaiya for the awesome DSA lessons on YouTube! 🙌 #LeetCode #DSA #CodingJourney #CoderArmy #Consistency #Homework

Done with Two Pointers questions! #LeetCode #DSA


How to find all pairs that sum up to k — in O(n)? That’s the trick behind LeetCode 1679 – Max Number of K-Sum Pairs (C++) 💥 Clean Hash Map logic explained step-by-step. #LeetCode #CPlusPlus #DSA #Algorithms #CodingInterview #HashMap 🎥 Watch here → youtu.be/9wSSfQlZDjw

SolutionsLan's tweet card. Max Number of K-Sum Pairs | LeetCode 1679 in C++ (Hash Map)

youtube.com

YouTube

Max Number of K-Sum Pairs | LeetCode 1679 in C++ (Hash Map)


DSA grind 16-10-2025 -> Solved POTD -> Solved 4 Graph problems - 733 (ez) - 200 (med, both with dfs, bfs) - 2 dfs problems (GFG, ez, med) #LeetCode #100daysofcode #dsa

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

-> Solved POTD
-> Solved 4 Graph problems
   - 733 (ez)
   - 200 (med, both with dfs, bfs)
   - 2 dfs problems (GFG, ez, med)

#LeetCode #100daysofcode #dsa

🔥 200 Days of Code. 200 Days of Growth. 💪 Proud to earn the LeetCode 200 Days Badge 2025! 🏆 Every single day of problem-solving has sharpened my logic, patience, and consistency. #LeetCode #CodingJourney #100DaysOfCode #KeepGrinding #DSA #ConsistencyWins

editing_perfect's tweet image. 🔥 200 Days of Code. 200 Days of Growth. 💪
Proud to earn the LeetCode 200 Days Badge 2025! 🏆
Every single day of problem-solving has sharpened my logic, patience, and consistency.
#LeetCode #CodingJourney #100DaysOfCode #KeepGrinding #DSA #ConsistencyWins

Day 26 of Hustle 🔥 1.Solved 4 DSA problems on LeetCode today 2. Explored how the Spring Boot architecture actually works — from Controller → Service → Repository flow! Feeling the progress 💪 #100DaysOfCode #SpringBoot #LeetCode #CodeNewbie

DEV_Shivam3224's tweet image. Day 26 of Hustle 🔥

1.Solved 4 DSA problems on LeetCode today 

2. Explored how the Spring Boot architecture actually works — from Controller → Service → Repository flow!

Feeling the progress 💪
#100DaysOfCode #SpringBoot #LeetCode #CodeNewbie

Today's #Leetcode #POTD Struggled a lot with edge cases on this one, but after some calm thinking, I finally cracked it. And I did other small solution too, But uploading this one because it is what I did first time. Looking forward to tackling more such problems! 🚀…

_Shiva_iitp's tweet image. Today's #Leetcode #POTD 
Struggled a lot with edge cases on this one, but after some calm thinking, I finally cracked it.
And I did other small solution too, But uploading this one because it is what I did first time.
Looking forward to tackling more such problems! 🚀…

Day 96 of DSA LeetCode #POTD . ✅2598. Smallest Missing Non-negative Integer After Operations #LearnInPublic #LeetCode #ProblemSolving #DSA

Kunwar609's tweet image. Day 96 of DSA LeetCode #POTD .                                                                                                                                        
✅2598. Smallest Missing Non-negative Integer After Operations

#LearnInPublic #LeetCode #ProblemSolving #DSA

💻 Just finished learning Strings in Java and kicked off my DSA string journey! Solved my first LeetCode string problem — Reverse String 🔁 Feeling pumped to dive deeper into string manipulation & logic building! 💪✨ #100DaysOfCode #LeetCode #Java #DSA #CodingJourney

ReyedgeM's tweet image. 💻 Just finished learning Strings in Java and kicked off my DSA string journey!
Solved my first LeetCode string problem — Reverse String 🔁
Feeling pumped to dive deeper into string manipulation & logic building! 💪✨
#100DaysOfCode #LeetCode #Java #DSA #CodingJourney

✅ Day 56 of #LeetCode Solved #potd 2598 “Smallest Missing Non-negative Integer After Operations” 🚀 Used modular arithmetic & frequency counting to find the smallest unavailable residue after balancing. 🕒 Time: O(n) 💾 Space: O(value) #100DaysOfCode #cpp

DevSagarKrJha's tweet image. ✅ Day 56 of #LeetCode
Solved #potd  2598 “Smallest Missing Non-negative Integer After Operations” 🚀
Used modular arithmetic & frequency counting to find the smallest unavailable residue after balancing.
🕒 Time: O(n)
💾 Space: O(value)
#100DaysOfCode #cpp

Day 48/100 of #100DaysOfCode Solved: 59. Spiral Matrix II (Medium) 🌀 Built a matrix filled in spiral order — mastering pointer bounds and layer-by-layer logic. Perfect practice for grid traversal! #LeetCode #DSA #CPP #Coding #CodeNewbie #Dev #100DaysOfLeetCode @harsh__x07

RahulGupta_0's tweet image. Day 48/100 of #100DaysOfCode
Solved: 59. Spiral Matrix II (Medium)
🌀 Built a matrix filled in spiral order — mastering pointer bounds and layer-by-layer logic.
Perfect practice for grid traversal!

#LeetCode #DSA #CPP #Coding #CodeNewbie #Dev #100DaysOfLeetCode @harsh__x07

They call it LeetCode, I call it emotional damage simulator.💀 Still waiting for that one ‘Accepted’ to fix my life too. #LeetCode #CodeLife #ProgrammerHumor #DarkHumor #DevCommunity #TechTwitter #100DaysOfCode #CodingMeme #DeveloperLife

AshutoMi12's tweet image. They call it LeetCode, I call it emotional damage simulator.💀
Still waiting for that one ‘Accepted’ to fix my life too.
#LeetCode #CodeLife #ProgrammerHumor #DarkHumor #DevCommunity #TechTwitter #100DaysOfCode #CodingMeme #DeveloperLife

100 days streak done on LeetCode ✨💪 See you at 2⃣0️⃣0️⃣ #DSA #LeetCode

y_krishnanand's tweet image. 100 days streak done on LeetCode ✨💪
 
See you at 2⃣0️⃣0️⃣

#DSA #LeetCode

Day 88 ⚡ Back to combining numbers — but this time, no repeats allowed! 🚫🔢 Handled duplicates like a pro and found all unique ways to hit the target 🎯 #100DaysOfCode #LeetCode

SaurabhSin99392's tweet image. Day 88 ⚡
Back to combining numbers — but this time, no repeats allowed! 🚫🔢
Handled duplicates like a pro and found all unique ways to hit the target 🎯
#100DaysOfCode #LeetCode

Caught solving LeetCode 662 in class 🥲 Because trees won’t traverse themselves 🌲💪 #coding #LeetCode #100DaysOfCode

jv_1008's tweet image. Caught solving LeetCode 662 in class 🥲
Because trees won’t traverse themselves 🌲💪
#coding #LeetCode 
#100DaysOfCode

#DAY_89 Day 89/90 ✅Done two questions today. (i) Intersection of Two Arrays (ii) Intersection of Two Arrays II #LeetCode #BuildInPublic #DevJourney #90DaysOfCode

twt_Kunal's tweet image. #DAY_89
Day 89/90    
✅Done two questions today.
(i)  Intersection of Two Arrays
(ii) Intersection of Two Arrays II

#LeetCode #BuildInPublic #DevJourney #90DaysOfCode
twt_Kunal's tweet image. #DAY_89
Day 89/90    
✅Done two questions today.
(i)  Intersection of Two Arrays
(ii) Intersection of Two Arrays II

#LeetCode #BuildInPublic #DevJourney #90DaysOfCode

Day 33 of #100DaysOfCode Solved Common Character . #LeetCode #Java

sam1368296's tweet image. Day 33  of #100DaysOfCode
Solved Common Character . #LeetCode #Java

Day 17 ✅ Solved LeetCode #345, #9, and #1876 💻 Had a long college day but stayed consistent. Feeling tired yet satisfied. #100DaysOfCode #LeetCode #DSA

AmanDubey5829h's tweet image. Day 17 ✅

Solved LeetCode #345, #9, and #1876 💻
Had a long college day but stayed consistent. Feeling tired yet satisfied.
#100DaysOfCode #LeetCode #DSA

🚀 Day 23 of #100DaysOfCode Solved LeetCode 151: Reverse Words in a String 💡 Approach 1️⃣ Reverse the whole string 2️⃣ Reverse each word 3️⃣ Remove extra spaces Perfect practice for string manipulation & two-pointer logic in C++ #LeetCode #CPlusPlus #Coding #ProblemSolving

eklavyaasingh's tweet image. 🚀 Day 23 of #100DaysOfCode

Solved LeetCode 151: Reverse Words in a String 💡

Approach 
1️⃣ Reverse the whole string
2️⃣ Reverse each word
3️⃣ Remove extra spaces
Perfect practice for string manipulation & two-pointer logic in C++ 
#LeetCode #CPlusPlus #Coding #ProblemSolving

Day 66 &67 of my #100DaysOfCode challenge!🚀 ✅Problem no. --> 3350 , 2273 #LeetCode #DSA ✅Infix to postfix and postfix to infix Conversions with stack #buildinpublic #developing #learningtoearning #CONNECT

adityacs22's tweet image. Day 66 &67 of my #100DaysOfCode challenge!🚀 

✅Problem no. --> 3350 , 2273 #LeetCode #DSA 
✅Infix to postfix and postfix to infix Conversions with stack

#buildinpublic #developing #learningtoearning #CONNECT
adityacs22's tweet image. Day 66 &67 of my #100DaysOfCode challenge!🚀 

✅Problem no. --> 3350 , 2273 #LeetCode #DSA 
✅Infix to postfix and postfix to infix Conversions with stack

#buildinpublic #developing #learningtoearning #CONNECT

#DAY_88 Day 88/90 ✅Done Two Sum IV - Input is a BST today. #LeetCode #BuildInPublic #DevJourney #90DaysOfCode

twt_Kunal's tweet image. #DAY_88
Day 88/90   
✅Done Two Sum IV - Input is a BST today.

#LeetCode #BuildInPublic #DevJourney #90DaysOfCode

#Day242 of coding: -leetcode POTD #DSA #LeetCode

the__csy20's tweet image. #Day242 of coding:

-leetcode POTD 

#DSA #LeetCode

👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya ! Focused on problem-solving through #LeetCode Solved: 🔹 Add Digits 🔹 Leap Year 🔹 Reverse Integer 🔹 Overflow Debug + Fix 🔹 Power of 2 🔹 Sqrt(X) 🔹 Palindrome Check Each problem = better logic 💪 #100DaysOfCode

harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…
harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…
harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…
harshsingh_ksri's tweet image. 👉Day 13 of my #DSA Journey in C++ with @rohit_negi9 Bhaiya !

Focused on problem-solving through #LeetCode 

Solved:
🔹 Add Digits
🔹 Leap Year
🔹 Reverse Integer
🔹 Overflow Debug + Fix
🔹 Power of 2
🔹 Sqrt(X)
🔹 Palindrome Check
Each problem = better logic 💪
#100DaysOfCode…

👨🏻‍💻Day 81/100 ~💻Dot env files on back-end ~💻Find the number that appears odd number of times #100DaysOfCode #DSA #leetcode #webdev

AnuragBuilds's tweet image. 👨🏻‍💻Day 81/100

~💻Dot env files on back-end
~💻Find the number that appears odd number of times

#100DaysOfCode #DSA #leetcode #webdev
AnuragBuilds's tweet image. 👨🏻‍💻Day 81/100

~💻Dot env files on back-end
~💻Find the number that appears odd number of times

#100DaysOfCode #DSA #leetcode #webdev

Day 96 of DSA LeetCode #POTD . ✅2598. Smallest Missing Non-negative Integer After Operations #LearnInPublic #LeetCode #ProblemSolving #DSA

Kunwar609's tweet image. Day 96 of DSA LeetCode #POTD .                                                                                                                                        
✅2598. Smallest Missing Non-negative Integer After Operations

#LearnInPublic #LeetCode #ProblemSolving #DSA

Day 26 | Solved today’s problem on binary search + subarray analysis — it really tested how carefully you handle sequence logic and edge cases.Took some dry runs to spot why the counter reset was misbehaving — but finally nailed it! #100DaysOfCode #LeetCode #Java #CodingStreak

lokesh_w02's tweet image. Day 26 | Solved today’s problem on binary search + subarray analysis — it really tested how carefully you handle sequence logic and edge cases.Took some dry runs to spot why the counter reset was misbehaving — but finally nailed it! #100DaysOfCode #LeetCode #Java #CodingStreak

📌 Day 27 Progress 📚 Queue topic studied — implementations for Circular, Circular+Deque & Deque 🔄 💻 Stack Questions — LC #901, #1003, #394, #85, #739, #71 🧠 🧩 POTD — LC #3350 ✅ 🎯 Step-1, Lec-3 of #TUFWinterArc done! ✅ @takeUforward_ #100DaysOfCode #LeetCode #DSA #Coding

RahulSingh30070's tweet image. 📌 Day 27 Progress
📚 Queue topic studied — implementations for Circular, Circular+Deque & Deque 🔄
💻 Stack Questions — LC #901, #1003, #394, #85, #739, #71 🧠
🧩 POTD — LC #3350 ✅
🎯 Step-1, Lec-3 of #TUFWinterArc done! ✅
@takeUforward_
#100DaysOfCode #LeetCode #DSA #Coding

#LeetCode Question of the Day — 3350 Adjacent Increasing Subarrays Detection II Given an array, find the max length k where two adjacent subarrays of length k are both strictly increasing #LeetCode #Java #CodingJourney

meranaamkhann's tweet image. #LeetCode Question of the Day — 3350
 Adjacent Increasing Subarrays Detection II
Given an array, find the max length k where two adjacent subarrays of length k are both strictly increasing
#LeetCode #Java #CodingJourney

#Day10 of #100DaysOfCode 🚀 Even during mid-sem exams, managed to stay consistent and solve 2 questions today 💪 1️⃣ Missing and Repeating No 2️⃣ Merge Intervals Hectic days, but small progress every day counts! ⚡ #LeetCode #Striver #DSA #CodingJourney #TUFWinterArc @striver_79

itsnazarealam's tweet image. #Day10 of #100DaysOfCode 🚀
Even during mid-sem exams, managed to stay consistent and solve 2 questions today 💪
1️⃣ Missing and Repeating No
2️⃣ Merge Intervals
Hectic days, but small progress every day counts! ⚡
#LeetCode #Striver #DSA #CodingJourney #TUFWinterArc @striver_79
itsnazarealam's tweet image. #Day10 of #100DaysOfCode 🚀
Even during mid-sem exams, managed to stay consistent and solve 2 questions today 💪
1️⃣ Missing and Repeating No
2️⃣ Merge Intervals
Hectic days, but small progress every day counts! ⚡
#LeetCode #Striver #DSA #CodingJourney #TUFWinterArc @striver_79

175 problems ✅ 100 days 🏆 47-day streak 🔥 I started with one rule — show up every single day. If you’re learning DSA, remember: → Pick one language → Learn the basics → Stay consistent Consistency > Intensity. Keep grinding 👨‍💻 #LeetCode #DevLife #Consistency

yaswanthsure2's tweet image. 175 problems ✅
100 days 🏆
47-day streak 🔥

I started with one rule — show up every single day.
If you’re learning DSA, remember:
→ Pick one language
→ Learn the basics
→ Stay consistent

Consistency > Intensity.
Keep grinding 👨‍💻

#LeetCode  #DevLife #Consistency

Loading...

Something went wrong.


Something went wrong.


United States Trends