#cplusplus search results

🚀 Day 65 of #100DaysOfCode Solved LeetCode 239 — Sliding Window Maximum ⚡ Idea 👇 🔹 Use Monotonic Stack (NGE logic) 🔹 Jump to next greater to find window max 🔹 Avoid O(n·k), achieve O(n) #LeetCode #Cplusplus #DSA #Coding #Algorithms #100DaysOfCode @harsh__x07

RahulGupta_0's tweet image. 🚀 Day 65 of #100DaysOfCode
Solved LeetCode 239 — Sliding Window Maximum ⚡
Idea 👇
🔹 Use Monotonic Stack (NGE logic)
🔹 Jump to next greater to find window max
🔹 Avoid O(n·k), achieve O(n)

#LeetCode #Cplusplus #DSA #Coding #Algorithms #100DaysOfCode @harsh__x07

Learning binary ↔ decimal conversions in C++ today! 🔢💻 Loved how simple loops + modulus can convert numbers so efficiently. Big thanks to Apna College for the clear explanations! 🙌 #CPlusPlus #Coding #Binary #DSA @ApnacollegeX

Pritivish07's tweet image. Learning binary ↔ decimal conversions in C++ today! 🔢💻
Loved how simple loops + modulus can convert numbers so efficiently.
Big thanks to Apna College for the clear explanations! 🙌

#CPlusPlus #Coding #Binary #DSA @ApnacollegeX
Pritivish07's tweet image. Learning binary ↔ decimal conversions in C++ today! 🔢💻
Loved how simple loops + modulus can convert numbers so efficiently.
Big thanks to Apna College for the clear explanations! 🙌

#CPlusPlus #Coding #Binary #DSA @ApnacollegeX
Pritivish07's tweet image. Learning binary ↔ decimal conversions in C++ today! 🔢💻
Loved how simple loops + modulus can convert numbers so efficiently.
Big thanks to Apna College for the clear explanations! 🙌

#CPlusPlus #Coding #Binary #DSA @ApnacollegeX
Pritivish07's tweet image. Learning binary ↔ decimal conversions in C++ today! 🔢💻
Loved how simple loops + modulus can convert numbers so efficiently.
Big thanks to Apna College for the clear explanations! 🙌

#CPlusPlus #Coding #Binary #DSA @ApnacollegeX

Announcing Meeting C++ 24h++ for the 18th/19 December meetingcpp.com/meetingcpp/new… #cpp #cplusplus

meetingcpp's tweet image. Announcing Meeting C++ 24h++ for the 18th/19 December
meetingcpp.com/meetingcpp/new…
#cpp
#cplusplus

Day 108, solved LeetCode 1437: Check If All 1s Are at Least K Apart #LeetCode #Coding #Cplusplus #DSA #DailyCoding #TechPrep #CodingLife #InterviewPrep

Anurags44798025's tweet image. Day 108, solved LeetCode 1437: Check If All 1s Are at Least K Apart
#LeetCode #Coding #Cplusplus #DSA #DailyCoding #TechPrep #CodingLife #InterviewPrep

It's a HUGE honor to have my "Artificial Intelligence in Unreal Engine 5" listed in the Best Game AI Books of all Time by @bookauthority #gamedev #ai #cplusplus #gameprogramming #ue5 #unrealengine

marcosecchi_'s tweet image. It's a HUGE honor to have my "Artificial Intelligence in Unreal Engine 5" listed in the Best Game AI Books of all Time by @bookauthority 

#gamedev  #ai #cplusplus #gameprogramming #ue5 #unrealengine

Time in C++: std::chrono::system_clock sandordargo.com/blog/2025/11/2… #cpp #cplusplus


QodeAssist v0.9.2 is out! 🚀 New in this release:Terminal command execution Side-by-side refactoring widget @ollama thinking mode Enhanced build tools Open source | Multi-LLM support github.com/Palm1r/QodeAss… #QtCreator #CPlusPlus #AI #OpenSource


How the Linux User/Kernel ABI Really Works - Driving the Linux Kernel Down at the Metal - Greg Law - C++Now 2025 youtu.be/5UkVl0xK-3E #Coding #Cplusplus #Cpp #Programming

cppnow's tweet card. How the Linux User/Kernel ABI Really Works - Greg Law - C++Now 2025

youtube.com

YouTube

How the Linux User/Kernel ABI Really Works - Greg Law - C++Now 2025


🎤 The C++ Online 2026 Call for Speakers is now open! We welcome submissions from all backgrounds & experience levels. Runs until 21 Nov 2025 Find out more including how to apply at cpponline.uk/call-for-speak… #cpp #cplusplus #coding #programming

cpponlineconf's tweet image. 🎤 The C++ Online 2026 Call for Speakers is now open!
We welcome submissions from all backgrounds & experience levels.
Runs until 21 Nov 2025
Find out more including how to apply at cpponline.uk/call-for-speak…
#cpp #cplusplus #coding #programming

Time in C++: Understanding <chrono> and the Concept of Clocks sandordargo.com/blog/2025/11/1… #cpp #cplusplus


Time in C++: std::chrono::system_clock sandordargo.com/blog/2025/11/2… #cpp #cplusplus


💼 Software Engineer (C++), Exposure Management (Remote) at RemoteHunter 📍 United States 💰 $120,000 - $180,000 per year 🛠️ #remotework #remotejobs #cplusplus #windowsos #linux #macosx #cybersecurity 🔗 applyfirst.app/jobs/90d75b3e-…


In case you missed it, check out our new video from CppCon 2025! How To Build Robust C++ Inter-Process Queues - Jody Hagins - CppCon 2025 youtu.be/AmPLoOfRFDs #Coding #Cplusplus #Cpp #Programming #cppcon

CppCon's tweet card. How To Build Robust C++ Inter-Process Queues - Jody Hagins - CppCon...

youtube.com

YouTube

How To Build Robust C++ Inter-Process Queues - Jody Hagins - CppCon...


The Hidden Power of C++23 std::stacktrace for Faster Debugging & Exception Handling - Erez Strauss - CppCon 2025 youtu.be/dZzmtHXJN7A #Coding #Cplusplus #Cpp #Programming #cppcon

CppCon's tweet card. The Hidden Power of C++23 std::stacktrace for Faster Debugging &...

youtube.com

YouTube

The Hidden Power of C++23 std::stacktrace for Faster Debugging &...


#CppPollOfToday: As a developer, are you able to work from home/remote? meetingcpp.com/mcpp/survey/?q… #cplusplus #cpp


📊 LeetCode: Max Subarray Sum Length Divisible by K Prefix sum + Kadane's! Split into k buckets by start position, apply modified Kadane's on k-sized chunks. ⚡ O(n) with k-bucket trick 🎯 Length divisible by k constraint 💡 Kadane's on chunks! #LeetCode #CPlusPlus #PrefixSum

me_sajeeb's tweet image. 📊 LeetCode: Max Subarray Sum Length Divisible by K 

Prefix sum + Kadane&apos;s! Split into k buckets by start position, apply modified Kadane&apos;s on k-sized chunks.

⚡ O(n) with k-bucket trick 🎯 Length divisible by k constraint 💡 Kadane&apos;s on chunks!
#LeetCode #CPlusPlus #PrefixSum

Universally Unique Lexicographically Sortable Identifiers (ULIDs) mariusbancila.ro/blog/2025/11/2… #cpp #cplusplus


In case you missed it, check out our new video from C++ on Sea 2024! Lightning Talk: How to Cook Your CPU with C++ - Conor Spilsbury - C++ on Sea 2025 youtube.com/watch?v=vs9UEr… #Coding #Cplusplus #Cpp #Programming #cpponsea

cpponsea's tweet card. Lightning Talk: How to Cook Your CPU with C++ - Conor Spilsbury - C++...

youtube.com

YouTube

Lightning Talk: How to Cook Your CPU with C++ - Conor Spilsbury - C++...


💯 100 LeetCode problems solved! One step closer to mastering DSA 🚀 #LeetCode #100DaysOfCode #Cplusplus #CodingJourney #Abdullah

abdullahatif07's tweet image. 💯 100 LeetCode problems solved!

One step closer to mastering DSA 🚀

#LeetCode #100DaysOfCode #Cplusplus #CodingJourney #Abdullah

🚀 Day 65 of #100DaysOfCode Solved LeetCode 239 — Sliding Window Maximum ⚡ Idea 👇 🔹 Use Monotonic Stack (NGE logic) 🔹 Jump to next greater to find window max 🔹 Avoid O(n·k), achieve O(n) #LeetCode #Cplusplus #DSA #Coding #Algorithms #100DaysOfCode @harsh__x07

RahulGupta_0's tweet image. 🚀 Day 65 of #100DaysOfCode
Solved LeetCode 239 — Sliding Window Maximum ⚡
Idea 👇
🔹 Use Monotonic Stack (NGE logic)
🔹 Jump to next greater to find window max
🔹 Avoid O(n·k), achieve O(n)

#LeetCode #Cplusplus #DSA #Coding #Algorithms #100DaysOfCode @harsh__x07

It took 2 decades to ship contracts. #cplusplus

serpent7776's tweet image. It took 2 decades to ship contracts.
#cplusplus

Day 79 of #100daysOfCode Solved LeetCode #7 – Reverse Integer Shouldn’t really be marked as Medium. Just a simple overflow check and done ✅ #LeetCode #CPlusPlus #Coding #100DaysOfCode

pallavicodes's tweet image. Day 79 of #100daysOfCode
Solved LeetCode #7 – Reverse Integer 
 Shouldn’t really be marked as Medium.

Just a simple overflow check and done ✅
#LeetCode #CPlusPlus #Coding #100DaysOfCode

Day 56 & 57 – #100DaysOfCode Recursion + OOP combo 😵‍💫 • Printed binary numbers where 1s >= 0s • Started OOP – made Bank, Car & Laptop classes (OOP vibe 🔥) • LeetCode revision: Max Product of Word Lengths • POTD: Laser Beams in a Bank DSA grind mode ✅ #CPlusPlus #DSA

HarshJain_Coder's tweet image. Day 56 &amp;amp; 57 – #100DaysOfCode

Recursion + OOP combo 😵‍💫
• Printed binary numbers where 1s &amp;gt;= 0s
• Started OOP – made Bank, Car &amp;amp; Laptop classes (OOP vibe 🔥)
• LeetCode revision: Max Product of Word Lengths
• POTD: Laser Beams in a Bank
DSA grind mode ✅

#CPlusPlus #DSA
HarshJain_Coder's tweet image. Day 56 &amp;amp; 57 – #100DaysOfCode

Recursion + OOP combo 😵‍💫
• Printed binary numbers where 1s &amp;gt;= 0s
• Started OOP – made Bank, Car &amp;amp; Laptop classes (OOP vibe 🔥)
• LeetCode revision: Max Product of Word Lengths
• POTD: Laser Beams in a Bank
DSA grind mode ✅

#CPlusPlus #DSA
HarshJain_Coder's tweet image. Day 56 &amp;amp; 57 – #100DaysOfCode

Recursion + OOP combo 😵‍💫
• Printed binary numbers where 1s &amp;gt;= 0s
• Started OOP – made Bank, Car &amp;amp; Laptop classes (OOP vibe 🔥)
• LeetCode revision: Max Product of Word Lengths
• POTD: Laser Beams in a Bank
DSA grind mode ✅

#CPlusPlus #DSA
HarshJain_Coder's tweet image. Day 56 &amp;amp; 57 – #100DaysOfCode

Recursion + OOP combo 😵‍💫
• Printed binary numbers where 1s &amp;gt;= 0s
• Started OOP – made Bank, Car &amp;amp; Laptop classes (OOP vibe 🔥)
• LeetCode revision: Max Product of Word Lengths
• POTD: Laser Beams in a Bank
DSA grind mode ✅

#CPlusPlus #DSA

Day 4 of my DSA journey by @rohit_negi9 ✅ Learned input in C++ ✅ Type conversion & truncation ✅ If-else conditions ✅ For loop basics ✅ Solved practice Qs on loops & conditions 🔥 Step by step, feeling more confident #100DaysOfCode #DSA #Cplusplus #CodingJourney

ftma_twt6's tweet image. Day 4 of my DSA journey by @rohit_negi9

✅ Learned input in C++
✅ Type conversion &amp;amp; truncation
✅ If-else conditions
✅ For loop basics
✅ Solved practice Qs on loops &amp;amp; conditions 🔥

Step by step, feeling more confident 

#100DaysOfCode #DSA #Cplusplus #CodingJourney
ftma_twt6's tweet image. Day 4 of my DSA journey by @rohit_negi9

✅ Learned input in C++
✅ Type conversion &amp;amp; truncation
✅ If-else conditions
✅ For loop basics
✅ Solved practice Qs on loops &amp;amp; conditions 🔥

Step by step, feeling more confident 

#100DaysOfCode #DSA #Cplusplus #CodingJourney

🔥 Day 90 of #100DaysOfCode 🔥 Leveling up with C++ DSA 🚀 ✅ Solved “Find Kth Largest Element” using frequency mapping & logic-based iteration. 🔍 Focused on optimizing reasoning over brute force — understanding how counting frequencies can replace sorting. #CPlusPlus #DSA

shivam21102005's tweet image. 🔥 Day 90 of #100DaysOfCode 🔥
Leveling up with C++ DSA 🚀
✅ Solved “Find Kth Largest Element” using frequency mapping &amp;amp; logic-based iteration.
🔍 Focused on optimizing reasoning over brute force — understanding how counting frequencies can replace sorting.
#CPlusPlus #DSA

Day 10 | C++ OOP Implemented constructor + destructor in my Bank System project Constructor → init + welcome Destructor → save + exit message OOP finally feels real, not theory #CPlusPlus #OOP #100DaysOfCode

JaxaMacSharma's tweet image. Day 10 | C++ OOP
Implemented constructor + destructor in my Bank System project 
Constructor → init + welcome
Destructor → save + exit message

OOP finally feels real, not theory 
#CPlusPlus #OOP #100DaysOfCode

There once was a geek with a code, Whose bugs made his apps nearly explode. Visual Studio shat, On his old sorry hat, Now he hacks with a curse and a goad. #VisualStudio2026 #CodingLife #CPlusPlus #DevHumor

joeyjanisheck's tweet image. There once was a geek with a code,
Whose bugs made his apps nearly explode.
Visual Studio shat,
On his old sorry hat,
Now he hacks with a curse and a goad.

#VisualStudio2026 #CodingLife #CPlusPlus #DevHumor

Day 78 of #100DaaysOfCode Problem: Intersection of Multiple Arrays Always satisfying to see that green “Accepted” 💚 #LeetCode #Cplusplus #Coding #Programming #100DaysOfCode

pallavicodes's tweet image. Day 78 of #100DaaysOfCode

Problem: Intersection of Multiple Arrays
Always satisfying to see that green “Accepted” 💚

#LeetCode #Cplusplus #Coding #Programming #100DaysOfCode

Day 77 of #100daysOfCode LeetCode 2215 — Find the Difference of Two Arrays (C++) Initially, I overcomplicated it with sorting and two-pointer logic 😅 But using unordered_set makes this problem super clean and efficient #LeetCode #CPlusPlus #DSA #Coding

pallavicodes's tweet image. Day 77 of #100daysOfCode
LeetCode 2215 — Find the Difference of Two Arrays (C++)
Initially, I overcomplicated it with sorting and two-pointer logic 😅
But using unordered_set makes this problem super clean and efficient
#LeetCode #CPlusPlus  #DSA #Coding

🗓 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 1 of #100DaysOfCode Started the DSA series — completed 3 lectures today. Feeling motivated to take on this 100-day challenge. Let’s go all in, even if it ends in failure 😤 #DSA #cplusplus #codingcommunity

amn_singh0's tweet image. Day 1 of #100DaysOfCode
Started the DSA series — completed 3 lectures today.
Feeling motivated to take on this 100-day challenge.
Let’s go all in, even if it ends in failure 😤
#DSA #cplusplus #codingcommunity

Day 15 of my DSA journey with @rohit_negi9 bhaiyaa... Topic covered: Introduction to 2D array. #dsa #cplusplus #codingjourney

codewitharun9's tweet image. Day 15 of my DSA journey with @rohit_negi9 bhaiyaa...

Topic covered:
Introduction to 2D array.
#dsa
#cplusplus
#codingjourney

🗓 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 &amp;amp; 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 &amp;amp; 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 &amp;amp; remove consecutive anagrams.
🔹 Check using frequency count or sorting.

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

#LeetCode #DSA #CPlusPlus #100DaysOfCode #CodingJourney

Day 7 of my DSA journey with @rohit_negi9 bhaiya... Learn about: Select sort and bubble sort. #dsa #cplusplus #codingjourney

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

Learn about:
Select sort and bubble sort.
#dsa
#cplusplus
#codingjourney

#180daysofcode - Day 27 ✅ with @rohit_negi9 bhaiyaa... Learn about: Map, filter, reduce, set and map in JavaScript in depth... #DSA #cplusplus #codingjourney

codewitharun9's tweet image. #180daysofcode - Day 27 ✅ with @rohit_negi9 bhaiyaa...

Learn about:
Map, filter, reduce, set and map in JavaScript in depth...

#DSA
#cplusplus
#codingjourney

Loading...

Something went wrong.


Something went wrong.


United States Trends