#cplusplus результаты поиска
🚀 Just solved Climbing Stairs on LeetCode! Optimized my recursion with memoization got 0 ms runtime, beating 💯% 🔥 Dynamic Programming for the win 🧠💪 #LeetCode #100DaysOfCode #Cplusplus #DynamicProgramming
💻 Day 87 / 100 — Daily Question 0 ms runtime ⚡ | Beats 100% TC: O(log n) SC: O(1) Power of logic + precision = perfection 💯 #100DaysOfCode #LeetCode #CPlusPlus #SpidyCode #LogicBuilder #DeveloperMindset
🧠 Day 74/100 of #100DaysOfCode Algo vibes 1️⃣ Pick index `i` where `nums[i] == 0` 2️⃣ Choose dir → left / right 3️⃣ While in bounds: • if `nums[i]==0` → move same dir • else → `nums[i]--`, flip dir, move 4️⃣ Count if all → 0 #LeetCode #CPlusPlus #Algorithm #CodingJourney
🚀 Day 59 of #100DaysOfCode Solved LeetCode 430 — Flatten a Multilevel Doubly Linked List ✅ Idea: 🔹 Traverse list 🔹 Recursively flatten child lists 🔹 Reconnect pointers ⏱ O(n) | 💾 O(1) #LeetCode #Cplusplus #DSA #CodingChallenge #ProblemSolving #LinkedList @harsh__x07
🚀 Day 58 of #100DaysOfCode Solved LeetCode 138 — Copy List with Random Pointer ✅ Idea: 🔹 Clone nodes & interleave 🔹 Fix random pointers 🔹 Detach cloned list ⏱ O(n) | 💾 O(1) #LeetCode #Cplusplus #LinkedList #CodingChallenge #DSA #ProblemSolving @harsh__x07
Day 04 of my DSA Journey 🚀 > Learnt about Number Systems — Binary <-> Decimal conversions, > Practiced number & star patterns, and > Got my first look at Time & Space Complexity Slowly building the base stronger each day 💻 #DSA #Cplusplus #100DaysOfCode #CodingJourney
Day 3/100 – DSA Streak 🚀 📚 Learned Pointers in C++: Memory basics & Address-of operator Dereference & Null pointers Value vs Reference Reference variables & practice Qs Finally making memory connections! 💡 #100DaysOfCode #Cplusplus #DSA
🚀 Day 58 of #100DaysOfCode Solved LeetCode 138 — Copy List with Random Pointer ✅ Idea: 🔹 Insert cloned nodes 🔹 Assign random pointers 🔹 Split the lists Time: O(n) | Space: O(1) #LeetCode #Cplusplus #LinkedList #CodingChallenge #DSA @harsh__x07
Nonsense errors are always a pain. Visual Studio and X-Code both often report issues that aren't actually issues. Solution builds fine. Likely some sort of corruption of intellisense data, but this just shouldn't happen! #cplusplus #visualstudio #intellisense
🎤 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
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
Day 05 of My DSA Journey🚀 Today’s learning: >> Time & Space Complexities – Big O, efficiency, optimization >> Arrays – syntax, operations, limitations >> Patterns – Floyd’s & Pascal’s Triangle 💡Key takeaway: Efficiency + Structure = Smarter Code #DSA #CPlusPlus #100DaysOfCode
🚀 Day 57 of #100DaysOfCode Solved LeetCode 2074 — Reverse Nodes in Even Length Groups ✅ Idea: 🔹 Group nodes: 1,2,3,4… 🔹 Reverse only even-sized groups 🔹 Reconnect & move forward ⏱ O(n) | 💾 O(1) #LeetCode #Cplusplus #LinkedList #CodingChallenge #DSA @harsh__x07
🚀 80,083 requests/sec with median latency 2.21 ms pure C++ performance. Built with #VixCpp, a modern backend framework designed for speed, scalability, and simplicity. wrk -t8 -c200 -d30s --latency http://localhost:8080/ #Cplusplus #Backend #Performance #FastAPIinCpp
I have partnered again with Packt to author a new #UnrealEngine book! I will be writing about advanced #CPlusPlus programming techniques. This time, I'll be using the amazing assets from @Quaternius. More updates very soon! #gamedev #gameprogramming #ue5 #gameplay #book
The best conference in the worst year meetingcpp.com/meetingcpp/new… #cpp #cplusplus
Imagine a world where your React Native apps fly like a cheetah on caffeine 🐆☕—thanks to C++ rewrites, those sluggish load times are officially GAME OVER. Say goodbye to frustration and hello to 10x performance boosts! Ready to level up your apps? 🚀 #ReactNative #Cplusplus #…
One week left, get your tickets for Meeting C++ 2025 now! ti.to/meetingcpp/mee… #cpp #cplusplus
New talk for the onsite part of Meeting C++ 2025: Hari Prasad Manoharan - Binary Parsing, C++23 Style! And yes, this talk is now twice at the conference :D meetingcpp.com/mcpp/schedule/… #meetingcpp #cpp #cplusplus
Qt for Android Automotive 6.8.5 is released qt.io/blog/qt-for-an… #QtDev #cpp #cplusplus
🧠 Solved LeetCode 140 – Word Break II using backtracking! Built all possible valid sentences from a string using recursion + smart word lookup 🔁 #LeetCode #CPlusPlus #DSA #Coding #Backtracking #ProblemSolving
Just dropped a new dialogue based article: “Arrays in C++”. 🧠 We break down what arrays are, how they’re used in DSA, plus modern alternatives like std::array & std::vector. Great for junior devs and interview prep! 👉 peerlist.io/sagarkumarjha/… #cplusplus #datastructures #coding
Day 3/100 – DSA Streak 🚀 📚 Learned Pointers in C++: Memory basics & Address-of operator Dereference & Null pointers Value vs Reference Reference variables & practice Qs Finally making memory connections! 💡 #100DaysOfCode #Cplusplus #DSA
💻 Day 87 / 100 — Daily Question 0 ms runtime ⚡ | Beats 100% TC: O(log n) SC: O(1) Power of logic + precision = perfection 💯 #100DaysOfCode #LeetCode #CPlusPlus #SpidyCode #LogicBuilder #DeveloperMindset
🚀 Just solved Climbing Stairs on LeetCode! Optimized my recursion with memoization got 0 ms runtime, beating 💯% 🔥 Dynamic Programming for the win 🧠💪 #LeetCode #100DaysOfCode #Cplusplus #DynamicProgramming
🚀 Day 59 of #100DaysOfCode Solved LeetCode 430 — Flatten a Multilevel Doubly Linked List ✅ Idea: 🔹 Traverse list 🔹 Recursively flatten child lists 🔹 Reconnect pointers ⏱ O(n) | 💾 O(1) #LeetCode #Cplusplus #DSA #CodingChallenge #ProblemSolving #LinkedList @harsh__x07
🧠 Day 1 of learning Dynamic Programming (DP) in C++ begins today! I already know recursion now it’s time to learn how to remember solutions instead of repeating them. Let’s turn brute force into brilliance 🚀 #100DaysOfCode #DynamicProgramming #Cplusplus
Stop doing Python tutorials. Start building real skills. 🛠️ 16 Unique C++ Projects for a portfolio that gets noticed. Master sockets, OpenCV, Qt, and high-performance coding. Which one is your next challenge? 👇 #CPlusPlus #CPP #100DaysOfCode #CodingProjects
💻 Just cracked LeetCode #6 – Zigzag Conversion using C++ ⚡ This one’s all about pattern logic — once you visualize the rows, the rest falls into place. Clean loops. Smart mapping. Efficient results. but boring :} #LeetCode #Cplusplus #ProblemSolving #CodeNewbie #DevJourney
#CppPollOfToday: Which open source licenses are you allowed to use in your works code base? meetingcpp.com/mcpp/survey/?q… #cplusplus #cpp
💻 Day 87 / 100 — Daily Question 0 ms runtime ⚡ | Beats 100% TC: O(log n) SC: O(1) Power of logic + precision = perfection 💯 #100DaysOfCode #LeetCode #CPlusPlus #SpidyCode #LogicBuilder #DeveloperMindset
🚀 Just solved Climbing Stairs on LeetCode! Optimized my recursion with memoization got 0 ms runtime, beating 💯% 🔥 Dynamic Programming for the win 🧠💪 #LeetCode #100DaysOfCode #Cplusplus #DynamicProgramming
✅ Day 69 of #100DaysOfCode Implemented atoi with 4 errors fixed—great debugging! Learned backtracking while generating parentheses. Progress through challenges fuels growth! #DSA #Cplusplus #Backtracking #LearnInPublic
🧠 Day 74/100 of #100DaysOfCode Algo vibes 1️⃣ Pick index `i` where `nums[i] == 0` 2️⃣ Choose dir → left / right 3️⃣ While in bounds: • if `nums[i]==0` → move same dir • else → `nums[i]--`, flip dir, move 4️⃣ Count if all → 0 #LeetCode #CPlusPlus #Algorithm #CodingJourney
🚀 Day 58 of #100DaysOfCode Solved LeetCode 138 — Copy List with Random Pointer ✅ Idea: 🔹 Clone nodes & interleave 🔹 Fix random pointers 🔹 Detach cloned list ⏱ O(n) | 💾 O(1) #LeetCode #Cplusplus #LinkedList #CodingChallenge #DSA #ProblemSolving @harsh__x07
🚀 Day 59 of #100DaysOfCode Solved LeetCode 430 — Flatten a Multilevel Doubly Linked List ✅ Idea: 🔹 Traverse list 🔹 Recursively flatten child lists 🔹 Reconnect pointers ⏱ O(n) | 💾 O(1) #LeetCode #Cplusplus #DSA #CodingChallenge #ProblemSolving #LinkedList @harsh__x07
✅ Day 62 of #100DaysOfCode Took on two Linked List tasks today: 🔹 Rotate a Linked List 🔹 Flatten a Linked List #DSA #Cplusplus #StriverSheet #LearnInPublic
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
✅ Day 64 of #100DaysOfCode Practiced Doubly Linked List basics: 🔹 Insert a Node 🔹 Delete a Node Getting the hang of DLL operations! #DSA #Cplusplus #StriverSheet #LearninPublic
Day 15 of my DSA journey with @rohit_negi9 bhaiyaa... Topic covered: Introduction to 2D array. #dsa #cplusplus #codingjourney
✅ Day 61 of #100DaysOfCode Solved: Reverse Linked List in Groups of K Could only solve one problem 😅 #DSA #Cplusplus #StriverSheet #LearnInPublic
🚀 Day 53 of #100DaysOfCode Rotated an n x n matrix 90° clockwise in-place 💻 💡 Approach: 1️⃣ Transpose the matrix 2️⃣ Reverse each row ✅ Used a pointer-based swap function for efficiency #CPlusPlus #DSA #ProblemSolving #Coding #100DaysOfCode #MatrixRotation
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 68 of #100DaysOfCode Focused on stacks with recursion today: 🔹 Sort Stack 🔹 Reverse Stack #DSA #Cplusplus #StriverSheet #LearnInPublic
Something went wrong.
Something went wrong.
United States Trends
- 1. StandX 5,056 posts
- 2. Aidan Hutchinson 3,995 posts
- 3. #NationalCatDay 2,115 posts
- 4. Huda 21.2K posts
- 5. South Korea 146K posts
- 6. FOMC 36.5K posts
- 7. #SpaceMarine2 N/A
- 8. NBA Street N/A
- 9. #wednesdaymotivation 4,727 posts
- 10. Hump Day 19.7K posts
- 11. Brad Holmes N/A
- 12. Jay Z 1,241 posts
- 13. Mandy 16.3K posts
- 14. Good Wednesday 34.1K posts
- 15. Marcedes Lewis 1,118 posts
- 16. Happy Hump 12.2K posts
- 17. #Wednesdayvibe 2,390 posts
- 18. #MAYATVAWARDS2025 1.73M posts
- 19. Olandria 34.5K posts
- 20. Cookbook 2,102 posts