#cplusplus resultados da pesquisa
๐ Day 61 of #100DaysOfCode Solved LeetCode 1944 โ Number of Visible People in a Queue ๐โ Idea: ๐น Traverse from right to left ๐น Use monotonic stack ๐น Count visible (pop smaller, +1 for taller) โฑ O(n) | ๐พ O(n) #LeetCode #Cplusplus #Stack #DSA #ProblemSolving @harsh__x07
Day 4/100 โ DSA Streak ๐ ๐ Learned about Space & Time Complexity: Big O Notation (O(1), O(n), O(log n), O(nยฒ)) Best, Average & Worst Case Comparing algorithm efficiency Finding smarter, not slower, solutions ๐ก #100DaysOfCode #Cplusplus #DSA #TimeComplexity
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 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 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 17: Create a structure to store information about a student, such as name, age, and grade. #100DaysOfCode #Cplusplus
๐ฏ LeetCode Daily: Min Increments to Form Target โ Hard problem, simple solution! Count upward differences only. Gravity handles the rest. โก O(n) greedy genius ๐ฏ Only pay for going UP ๐ก 5 lines = Hard solved #LeetCode #CPlusPlus #Greedy #100DaysOfCode
๐ Day 38 of #100DaysOfCode Solved LeetCode 36 โ Valid Sudoku No map, no set โ just clean array logic โ leetcode: leetcode.com/u/eklavyaasingh #LeetCode #CPlusPlus #DSA #CodeWithEklavya
๐ Day 93 of #100DaysOfCode Solved LeetCode 397 โ Integer Replacement ๐งฎ Got 100% runtime efficiency (0 ms) โก ๐ง Logic: If even โ divide by 2 If odd โ choose +1 or -1 wisely to minimize steps ๐ #LeetCode #Cplusplus #CodingJourney #CodeNewbie #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
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
๐ 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
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
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 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 5 Reflection: AI taught me logic, DSA taught me control. Todayโs takeaway: understanding loops whether in code or learning makes all the difference. #LearningInPublic #Cplusplus #AI
๐ Day 12 of my LeetCode DSA Journey (C++) Today I solved โValid Anagramโ (LeetCode #242) โจ Learned about: String manipulation ๐นSorting approach Comparison logic for anagram validation ๐ปAll 53 test cases passed! โกRuntime: 7ms | ๐พ Memory: 9.74MB #LeetCode #DSA #Cplusplus
Meeting C++ 2025 featured talk of the day: Kerstin Keller - Why managing C++ dependencies is hard (and what to do about it) meetingcpp.com/mcpp/schedule/โฆ #meetingcpp #cpp #cplusplus
std::generator in C++23: When to use, and how to improve it - Johannes Kalmbach - C++ on Sea 2025 youtube.com/watch?v=l9qKGGโฆ #Coding #Cplusplus #Cpp #Programming #cpponsea
youtube.com
YouTube
std::generator in C++23: When to use, and how to improve it -...
Three Meanings of Reference sandordargo.com/blog/2025/10/2โฆ #cpp #cplusplus
Effective CTest - a Random Selection of C++ Best Practices - Daniel Pfeifer - C++Now 2025 youtu.be/whaPQ5BU2y8 #Coding #Cplusplus #Cpp #Programming
Day1. First program in C++ #programming #cplusplus #100daysofcode #learntocode #upgrade #mindsetmatters
I almost complete my "digital clock" project ๐จโ๐ป๐. I will show you when I complete it ๐ #cplusplus #100daysofcode #coding #programmer
๐ Day 61 of #100DaysOfCode Solved LeetCode 1944 โ Number of Visible People in a Queue ๐โ Idea: ๐น Traverse from right to left ๐น Use monotonic stack ๐น Count visible (pop smaller, +1 for taller) โฑ O(n) | ๐พ O(n) #LeetCode #Cplusplus #Stack #DSA #ProblemSolving @harsh__x07
โ 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 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 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 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 61 of #100DaysOfCode Solved: Reverse Linked List in Groups of K Could only solve one problem ๐ #DSA #Cplusplus #StriverSheet #LearnInPublic
๐ป 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 4/100 โ DSA Streak ๐ ๐ Learned about Space & Time Complexity: Big O Notation (O(1), O(n), O(log n), O(nยฒ)) Best, Average & Worst Case Comparing algorithm efficiency Finding smarter, not slower, solutions ๐ก #100DaysOfCode #Cplusplus #DSA #TimeComplexity
๐ 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 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 17: Create a structure to store information about a student, such as name, age, and grade. #100DaysOfCode #Cplusplus
Something went wrong.
Something went wrong.
United States Trends
- 1. Carson Beck 3,942 posts
- 2. Miami 59K posts
- 3. Jaire 5,000 posts
- 4. Vandy 13K posts
- 5. #UFCVegas110 5,166 posts
- 6. Mario 67.1K posts
- 7. Clemson 11.8K posts
- 8. Howie 2,287 posts
- 9. Lagway 1,889 posts
- 10. Noah Thomas N/A
- 11. Georgia 41.2K posts
- 12. #iufb 1,604 posts
- 13. Ringo 12.9K posts
- 14. Jeff Sims 1,514 posts
- 15. Ohio State 18.1K posts
- 16. Dabo 3,194 posts
- 17. Ethical Diamond N/A
- 18. Adoree N/A
- 19. Iowa State 3,191 posts
- 20. Dumont 1,733 posts