#cplusplus ผลการค้นหา
🚀 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


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

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

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

My ALS Journey (31/31): The End modernescpp.com/index.php/my-a… #cpp #cplusplus
🚀 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

🗓 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


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

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

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

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
Five Issues with std::expected and How to Fix Them - Vitaly Fanaskov - C++Now 2025 youtu.be/eRi8q1FjEoY #Coding #Cplusplus #Cpp #Programming
youtube.com
YouTube
Five Issues with std::expected and How to Fix Them - Vitaly Fanaskov...
Using C++ to implement a color choosing panel in Qt youtube.com/watch?v=kc3hNr… #QtDev #cpp #cplusplus
youtube.com
YouTube
Using C++ to implement a color choosing panel in Qt
Book of the Day: Learn C++ by Example by Frances Buontempo meetingcpp.com/mcpp/books/boo… #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

📊 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


🚀 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

Meeting C++ 2025 featured talk of the day: Gareth Williamson - Building Bridges: C++ Interop., Foreign Function Interfaces & ABI meetingcpp.com/mcpp/schedule/… #meetingcpp #cpp #cplusplus
Recent Thumbnails I Designed Let me know which one you like most!




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


Yıldız 🌟 #halef #halefköklerinçağrısı #birandamlayilmaz #ilhanşen #aybükepusat @birandamlayz @halefdizi #yılser #yilser @illhansen

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

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




Something went wrong.
Something went wrong.
United States Trends
- 1. Gabe Vincent 3,716 posts
- 2. Deport Harry Sisson 8,134 posts
- 3. #PokemonZA 1,491 posts
- 4. Angel Reese 51K posts
- 5. DuPont 1,690 posts
- 6. #Blackhawks 2,126 posts
- 7. Deloitte 6,355 posts
- 8. Blues 21.3K posts
- 9. Mavs 5,735 posts
- 10. tzuyu 237K posts
- 11. #PokemonLegendZA 1,347 posts
- 12. Lakers 18.2K posts
- 13. #AEWDynamite 18.5K posts
- 14. Tusky 2,354 posts
- 15. #TusksUp 1,652 posts
- 16. Birdman 5,266 posts
- 17. Mad Max 3,555 posts
- 18. jihyo 187K posts
- 19. Nazar 6,821 posts
- 20. Britney 21.2K posts