🚀 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 62/101 | LeetCode #938 Range Sum of BST 🔹 calculate PreOrder of tree . 🔹 find the sum from low to high . ✅ Time: O(n) ✅ Space: O(n) #LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney

23GuptaSarthak's tweet image. 🗓 Day 62/101 | 
LeetCode #938 Range Sum of BST

🔹 calculate PreOrder of tree .
🔹 find the sum from low to high .

✅ Time: O(n)
✅ Space: O(n) 

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney
23GuptaSarthak's tweet image. 🗓 Day 62/101 | 
LeetCode #938 Range Sum of BST

🔹 calculate PreOrder of tree .
🔹 find the sum from low to high .

✅ Time: O(n)
✅ Space: O(n) 

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney

Day 60 of #100DaysOfCode 💻 Solved “3Sum Closest” today — a twist on the classic 3Sum problem. Focused on logic optimization and precision in finding nearest targets 🎯 Every day, a bit sharper with problem-solving! #LeetCode #Cplusplus #CodingJourney

shivam21102005's tweet image. Day 60 of #100DaysOfCode 💻
Solved “3Sum Closest” today — a twist on the classic 3Sum problem.
Focused on logic optimization and precision in finding nearest targets 🎯
Every day, a bit sharper with problem-solving!
#LeetCode #Cplusplus #CodingJourney

📊 LeetCode Daily: Adjacent Increasing Subarrays II ✅ One-pass greedy! Track current & previous streaks, calculate max k from splits or adjacents. ⚡ O(n) single pass = optimal 🎯 res = max(sz/2, min(prev,sz)) 💡 Streak tracking FTW #LeetCode #CPlusPlus #Greedy

me_sajeeb's tweet image. 📊 LeetCode Daily: Adjacent Increasing Subarrays II ✅

One-pass greedy! Track current & previous streaks, calculate max k from splits or adjacents.

⚡ O(n) single pass = optimal 
🎯 res = max(sz/2, min(prev,sz)) 
💡 Streak tracking FTW

#LeetCode #CPlusPlus #Greedy

Day 68 of #100DaysOfCode Problem : Roman to Integer (LeetCode- 13) Implemented a clean and optimized approach using unordered_map and reverse iteration. #LeetCode #CPlusPlus #ProblemSolving #TechJourney #DSA

pallavicodes's tweet image. Day 68 of #100DaysOfCode
Problem : Roman to Integer (LeetCode- 13)
Implemented a clean and optimized approach using unordered_map and reverse iteration. 

#LeetCode #CPlusPlus #ProblemSolving #TechJourney #DSA

🚀 Day 67 of #100DaysOfCode Today I solved the “Sqrt(x)” problem using Binary Search 🧠 Optimized my approach to achieve O(log n) time complexity — instead of using built-in functions, I implemented the logic from scratch! ⚙️ #LeetCode #CPlusPlus #Programming #100DaysOfCode

shivam21102005's tweet image. 🚀 Day 67 of #100DaysOfCode
Today I solved the “Sqrt(x)” problem using Binary Search 🧠
Optimized my approach to achieve O(log n) time complexity — instead of using built-in functions, I implemented the logic from scratch! ⚙️

#LeetCode #CPlusPlus #Programming  #100DaysOfCode

Day 65 of #100DaysOfCode Tried the Sliding Window technique for the first time today — and it’s actually kinda cool Solved LeetCode #643 – Maximum Average Subarray I #LeetCode #Cplusplus #CodingJourney #DevCommunity #100DaysOfDSA

pallavicodes's tweet image. Day 65 of #100DaysOfCode 
Tried the Sliding Window technique for the first time today — and it’s actually kinda cool 
Solved LeetCode #643 – Maximum Average Subarray I
#LeetCode #Cplusplus #CodingJourney #DevCommunity #100DaysOfDSA

Day 18 of my DSA journey with @rohit_negi9 bhaiya... Practiced some questions on string(e.g, defanging IP address, check pangram, sort a string).. #DSA #cplusplus #codingjourney #LeetCode

codewitharun9's tweet image. Day 18 of my DSA journey with @rohit_negi9 bhaiya...

Practiced some questions on string(e.g, defanging IP address, check pangram, sort a string)..

#DSA
#cplusplus
#codingjourney
#LeetCode

🚀 Day 46 of #100DaysOfCode Solved LeetCode 61 – Rotate List 🔁 Learned to handle linked list rotations efficiently using pointer manipulation & k % n. Runtime: 0ms ⚡️ #LeetCode #Cplusplus #DSA #CodingChallenge #LinkedList @harsh__x07

RahulGupta_0's tweet image. 🚀 Day 46 of #100DaysOfCode
Solved LeetCode 61 – Rotate List 🔁
Learned to handle linked list rotations efficiently using pointer manipulation & k % n.
Runtime: 0ms ⚡️

#LeetCode #Cplusplus #DSA #CodingChallenge #LinkedList @harsh__x07

Day 80 ✅ Crushed the Maximal Rectangle problem on LeetCode! 💪 75/75 test cases ✅ Runtime: 2ms (beats 89.5%) ⚡ Memory: 18.34MB (beats 60.5%) 💾 Stack + histogram magic makes all the difference! 📊🔥 #100DaysOfCode #LeetCode #Cplusplus #CodingJourney #AlgoLove

AIDev_Sumit's tweet image. Day 80 ✅
Crushed the Maximal Rectangle problem on LeetCode! 💪
75/75 test cases ✅
Runtime: 2ms (beats 89.5%) ⚡
Memory: 18.34MB (beats 60.5%) 💾
Stack + histogram magic makes all the difference! 📊🔥
#100DaysOfCode #LeetCode #Cplusplus #CodingJourney #AlgoLove

🗓 Day 60/101 LeetCode #2273 Find Resultant Array After Removing Anagrams ✅ 🔹 Traverse words & remove consecutive anagrams. 🔹 Check using frequency count or sorting. ✅ Time: O(n * m) ✅ Space: O(n) #LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney

23GuptaSarthak's tweet image. 🗓 Day 60/101
LeetCode #2273  Find Resultant Array After Removing Anagrams ✅

🔹 Traverse words & remove consecutive anagrams.
🔹 Check using frequency count or sorting.

✅ Time: O(n * m)
✅ Space: O(n)

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney
23GuptaSarthak's tweet image. 🗓 Day 60/101
LeetCode #2273  Find Resultant Array After Removing Anagrams ✅

🔹 Traverse words & remove consecutive anagrams.
🔹 Check using frequency count or sorting.

✅ Time: O(n * m)
✅ Space: O(n)

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney
23GuptaSarthak's tweet image. 🗓 Day 60/101
LeetCode #2273  Find Resultant Array After Removing Anagrams ✅

🔹 Traverse words & remove consecutive anagrams.
🔹 Check using frequency count or sorting.

✅ Time: O(n * m)
✅ Space: O(n)

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney

DSA Problem Series : Topic: Reverse Kth Group using Queue Used Queue + Stack combo to reverse elements in fixed-size groups. Learned how both data structures balance order Mentors: @lovebabbar3 & Lakshay Kumar (@CodeHelp4U ) #DSA #Queue #Cplusplus #CodeHelp #ProblemSolving

adityasharma364's tweet image. DSA Problem Series  :

Topic: Reverse Kth Group using Queue

Used Queue + Stack combo to reverse elements in fixed-size groups.

Learned how both data structures balance order

Mentors: @lovebabbar3  & Lakshay Kumar (@CodeHelp4U )
#DSA #Queue #Cplusplus #CodeHelp #ProblemSolving
adityasharma364's tweet image. DSA Problem Series  :

Topic: Reverse Kth Group using Queue

Used Queue + Stack combo to reverse elements in fixed-size groups.

Learned how both data structures balance order

Mentors: @lovebabbar3  & Lakshay Kumar (@CodeHelp4U )
#DSA #Queue #Cplusplus #CodeHelp #ProblemSolving

Day 146 of #365daysodcode 🚀 Day 13 of DSA with C++ Today I wrote my first C++ program and explored: 🔹 Data types & their sizes (int, char, bool, float, double) 🔹 Type conversion & ASCII values 🔹 Comparison operators #DSA #CPlusPlus #CodingJourney #100DaysOfCode #Programmer

datboi_aayu's tweet image. Day 146 of #365daysodcode

🚀 Day 13 of DSA with C++

Today I wrote my first C++ program and explored:
🔹 Data types & their sizes (int, char, bool, float, double)
🔹 Type conversion & ASCII values
🔹 Comparison operators

#DSA #CPlusPlus #CodingJourney #100DaysOfCode #Programmer
datboi_aayu's tweet image. Day 146 of #365daysodcode

🚀 Day 13 of DSA with C++

Today I wrote my first C++ program and explored:
🔹 Data types & their sizes (int, char, bool, float, double)
🔹 Type conversion & ASCII values
🔹 Comparison operators

#DSA #CPlusPlus #CodingJourney #100DaysOfCode #Programmer

🚀 Day 74 of my coding journey! Dove into Spiral Matrix generation in C++ today. Learned how to fill an n x n matrix in spiral order using boundaries and loops. 🌀 #100DaysOfCode #Cplusplus #CodingJourney #LeetCode #DevLife #Day74

AIDev_Sumit's tweet image. 🚀 Day 74 of my coding journey!
Dove into Spiral Matrix generation in C++ today. Learned how to fill an n x n matrix in spiral order using boundaries and loops. 🌀
#100DaysOfCode #Cplusplus #CodingJourney #LeetCode #DevLife #Day74

DSA Problem Series — Day 49 🚀 Topic: Deque (Double Ended Queue) Learned how to perform insertion and deletion from both ends efficiently. Also explored its use in sliding window problems and palindrome checking. Mentors: @lovebabbar3 (@CodeHelp4U ) #DSA #Deque #Cplusplus

adityasharma364's tweet image. DSA Problem Series — Day 49 🚀

Topic: Deque (Double Ended Queue)

Learned how to perform insertion and deletion from both ends efficiently.

Also explored its use in sliding window problems and palindrome checking.

Mentors: @lovebabbar3  (@CodeHelp4U )
#DSA #Deque #Cplusplus
adityasharma364's tweet image. DSA Problem Series — Day 49 🚀

Topic: Deque (Double Ended Queue)

Learned how to perform insertion and deletion from both ends efficiently.

Also explored its use in sliding window problems and palindrome checking.

Mentors: @lovebabbar3  (@CodeHelp4U )
#DSA #Deque #Cplusplus
adityasharma364's tweet image. DSA Problem Series — Day 49 🚀

Topic: Deque (Double Ended Queue)

Learned how to perform insertion and deletion from both ends efficiently.

Also explored its use in sliding window problems and palindrome checking.

Mentors: @lovebabbar3  (@CodeHelp4U )
#DSA #Deque #Cplusplus

High-performance async server in modern C++ ⚡ Thread pool + non-blocking I/O = 84,000 req/sec. #VixCpp #CPlusPlus #FastAPIinCpp

g_kirira's tweet image. High-performance async server in modern C++ ⚡
Thread pool + non-blocking I/O = 84,000 req/sec.
#VixCpp #CPlusPlus #FastAPIinCpp

Asynchronous. Scalable. Elegant. This is how Vix.cpp handles every HTTP request. ⚙️🔥 #CPlusPlus #VixCpp

g_kirira's tweet image. Asynchronous. Scalable. Elegant.
This is how Vix.cpp handles every HTTP request. ⚙️🔥 #CPlusPlus #VixCpp

𝔠𝔬𝔫𝔰𝔱: The keyword of integrity. It’s a trust agreement between you and your compiler. 🤝 void show(const std::string& name); Your future self will thank you for using it. 🙌 #cplusplus

mainbhivoter's tweet image. 𝔠𝔬𝔫𝔰𝔱: The keyword of integrity.

It’s a trust agreement between you and your compiler. 🤝 

void show(const std::string& name);

Your future self will thank you for using it. 🙌

#cplusplus

#cplusplus pals is it ++day or day++?


Victory!🎉Got a Listen Server running in #UnrealEngine with #Cplusplus packaged it up (quirks and all), and connected my dev PC to my trusty old laptop over LAN. The poor thing fought bravely… but it’s definitely more potato than gaming rig.🥔💻😂 . #LearningInPublic #gamedev


#CppPollOfToday: Which C++ Standards do you currently use in your projects? meetingcpp.com/mcpp/survey/?q… #cplusplus #cpp


Day 18 of my DSA journey with @rohit_negi9 bhaiya... Practiced some questions on string(e.g, defanging IP address, check pangram, sort a string).. #DSA #cplusplus #codingjourney #LeetCode

codewitharun9's tweet image. Day 18 of my DSA journey with @rohit_negi9 bhaiya...

Practiced some questions on string(e.g, defanging IP address, check pangram, sort a string)..

#DSA
#cplusplus
#codingjourney
#LeetCode

📊 LeetCode Daily: Adjacent Increasing Subarrays II ✅ One-pass greedy! Track current & previous streaks, calculate max k from splits or adjacents. ⚡ O(n) single pass = optimal 🎯 res = max(sz/2, min(prev,sz)) 💡 Streak tracking FTW #LeetCode #CPlusPlus #Greedy

me_sajeeb's tweet image. 📊 LeetCode Daily: Adjacent Increasing Subarrays II ✅

One-pass greedy! Track current & previous streaks, calculate max k from splits or adjacents.

⚡ O(n) single pass = optimal 
🎯 res = max(sz/2, min(prev,sz)) 
💡 Streak tracking FTW

#LeetCode #CPlusPlus #Greedy

🗓 Day 62/101 | LeetCode #938 Range Sum of BST 🔹 calculate PreOrder of tree . 🔹 find the sum from low to high . ✅ Time: O(n) ✅ Space: O(n) #LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney

23GuptaSarthak's tweet image. 🗓 Day 62/101 | 
LeetCode #938 Range Sum of BST

🔹 calculate PreOrder of tree .
🔹 find the sum from low to high .

✅ Time: O(n)
✅ Space: O(n) 

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney
23GuptaSarthak's tweet image. 🗓 Day 62/101 | 
LeetCode #938 Range Sum of BST

🔹 calculate PreOrder of tree .
🔹 find the sum from low to high .

✅ Time: O(n)
✅ Space: O(n) 

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney

🚀 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

flat_map wins 14–29% across diverse workloads; up to 3.2x fewer comparisons on unsuccessful lookups via overflow‑byte early stop. go.boost.org/4o05Y2w #cplusplus #opensource #boost

Boost_Libraries's tweet image. flat_map wins 14–29% across diverse workloads; up to 3.2x fewer comparisons on unsuccessful lookups via overflow‑byte early stop. go.boost.org/4o05Y2w  #cplusplus #opensource #boost

꒰ ICONS PARA COMPARTIR  ׅ  ⭒  ✿ by 🦦

cclesbiarmis's tweet image. ꒰ ICONS PARA COMPARTIR  ׅ  ⭒  ✿

                      by 🦦
cclesbiarmis's tweet image. ꒰ ICONS PARA COMPARTIR  ׅ  ⭒  ✿

                      by 🦦

スマホサイズのイラストです よろしければ壁紙に使ってください #laplus_artdesu

ito_to_0427's tweet image. スマホサイズのイラストです
よろしければ壁紙に使ってください
#laplus_artdesu

Recent Thumbnails I Designed Let me know which one you like most!

CenetArt's tweet image. Recent Thumbnails I Designed

Let me know which one you like most!
CenetArt's tweet image. Recent Thumbnails I Designed

Let me know which one you like most!
CenetArt's tweet image. Recent Thumbnails I Designed

Let me know which one you like most!
CenetArt's tweet image. Recent Thumbnails I Designed

Let me know which one you like most!

⠀⠀⠀⠀⠀⠀★— Filtros de 𝗶𝗻𝘀𝘁𝗮𝗴𝗿𝗮𝗺 lindos/ coquette que te pueden gustar ¡! 🌷 ♯ by: 💌

cchistossp's tweet image. ⠀⠀⠀⠀⠀⠀★— Filtros de 𝗶𝗻𝘀𝘁𝗮𝗴𝗿𝗮𝗺 lindos/ coquette que te pueden gustar ¡! 🌷   ♯ 
                           by: 💌
cchistossp's tweet image. ⠀⠀⠀⠀⠀⠀★— Filtros de 𝗶𝗻𝘀𝘁𝗮𝗴𝗿𝗮𝗺 lindos/ coquette que te pueden gustar ¡! 🌷   ♯ 
                           by: 💌

Filtros de instagram *・゚゚・*:.。 ◑ | a thread

cccoquette's tweet image. Filtros de instagram *・゚゚・*:.。
◑ | a thread
cccoquette's tweet image. Filtros de instagram *・゚゚・*:.。
◑ | a thread

. 𝐶𝑜𝑢𝑔𝘩𝑙𝑎𝑛 ⋆。‧˚ʚɞ˚‧。⋆

cecilbutterfly's tweet image. .                                            𝐶𝑜𝑢𝑔𝘩𝑙𝑎𝑛
                                             ⋆。‧˚ʚɞ˚‧。⋆

hej. poznamy sie.? oto moje fotki cykniete w podrozy do piekla na ktorych testuje modne filtry #Trendy #Queen 👑💖 za lajk i mily kom wpadne na DM.. chcesz tego kochanie? Pozdro.

corkafriza's tweet image. hej. poznamy sie.? oto moje fotki cykniete w podrozy do piekla na ktorych testuje modne filtry #Trendy #Queen 👑💖 za lajk i mily kom wpadne na DM.. chcesz tego kochanie? Pozdro.
corkafriza's tweet image. hej. poznamy sie.? oto moje fotki cykniete w podrozy do piekla na ktorych testuje modne filtry #Trendy #Queen 👑💖 za lajk i mily kom wpadne na DM.. chcesz tego kochanie? Pozdro.

🚀 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

‧͙⁺˚*・༓ Filtros coquette/doll de polarr ༓・*˚⁺‧ ☾ | a thread by 🐿

cccoquette's tweet image. ‧͙⁺˚*・༓ Filtros coquette/doll de polarr ༓・*˚⁺‧
☾ | a thread by 🐿
cccoquette's tweet image. ‧͙⁺˚*・༓ Filtros coquette/doll de polarr ༓・*˚⁺‧
☾ | a thread by 🐿

my favorite pictures with my favorite filter 🤪

_meeercedes's tweet image. my favorite pictures with my favorite filter 🤪
_meeercedes's tweet image. my favorite pictures with my favorite filter 🤪
_meeercedes's tweet image. my favorite pictures with my favorite filter 🤪
_meeercedes's tweet image. my favorite pictures with my favorite filter 🤪

time spent in the southwest shot on colorplus 200 🎞

cbshooots's tweet image. time spent in the southwest shot on colorplus 200 🎞
cbshooots's tweet image. time spent in the southwest shot on colorplus 200 🎞
cbshooots's tweet image. time spent in the southwest shot on colorplus 200 🎞
cbshooots's tweet image. time spent in the southwest shot on colorplus 200 🎞

I’m opening c0mms! There’ll be 3 slots open for now A lot more of my art is visible on the butterfly app if needed :D

Caduceusdraws's tweet image. I’m opening c0mms! There’ll be 3 slots open for now

A lot more of my art is visible on the butterfly app if needed :D
Caduceusdraws's tweet image. I’m opening c0mms! There’ll be 3 slots open for now

A lot more of my art is visible on the butterfly app if needed :D
Caduceusdraws's tweet image. I’m opening c0mms! There’ll be 3 slots open for now

A lot more of my art is visible on the butterfly app if needed :D
Caduceusdraws's tweet image. I’m opening c0mms! There’ll be 3 slots open for now

A lot more of my art is visible on the butterfly app if needed :D

Loading...

Something went wrong.


Something went wrong.


United States Trends