#cplusplus результаты поиска

Come and join us in Berlin or online for Meeting C++ 2025! meetingcpp.com/2025 #cpp #cplusplus

meetingcpp's tweet image. Come and join us in Berlin or online for Meeting C++ 2025!
meetingcpp.com/2025
#cpp
#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

tehami_326's tweet image. 🚀 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

__Yasshhh's tweet image. 💻 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

23GuptaSarthak's tweet image. 🧠 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
23GuptaSarthak's tweet image. 🧠 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 19: C++ program to find the factorial of a number using a class. #100DaysOfCode #Cplusplus

aryansonie's tweet image. Day 19: C++ program to find the factorial of a number using a class.

#100DaysOfCode #Cplusplus

Day 18: C++ program to find the reverse of a number using a class. #100DaysOfCode #Cplusplus

aryansonie's tweet image. Day 18: C++ program to find the reverse of a number using a class.

#100DaysOfCode #Cplusplus

🚀 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

RahulGupta_0's tweet image. 🚀 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

RahulGupta_0's tweet image. 🚀 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

harshtwt_'s tweet image. Day 04 of my DSA Journey 🚀
&amp;gt; Learnt about Number Systems — Binary &amp;lt;-&amp;gt; Decimal conversions, 
&amp;gt; Practiced number &amp;amp; star patterns, and 
&amp;gt; Got my first look at Time &amp;amp; Space Complexity 

Slowly building the base stronger each day 💻
#DSA #Cplusplus #100DaysOfCode #CodingJourney
harshtwt_'s tweet image. Day 04 of my DSA Journey 🚀
&amp;gt; Learnt about Number Systems — Binary &amp;lt;-&amp;gt; Decimal conversions, 
&amp;gt; Practiced number &amp;amp; star patterns, and 
&amp;gt; Got my first look at Time &amp;amp; Space Complexity 

Slowly building the base stronger each day 💻
#DSA #Cplusplus #100DaysOfCode #CodingJourney
harshtwt_'s tweet image. Day 04 of my DSA Journey 🚀
&amp;gt; Learnt about Number Systems — Binary &amp;lt;-&amp;gt; Decimal conversions, 
&amp;gt; Practiced number &amp;amp; star patterns, and 
&amp;gt; Got my first look at Time &amp;amp; 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

RahulGupta_0's tweet image. 🚀 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

MartinCaine's tweet image. Nonsense errors are always a pain. Visual Studio and X-Code both often report issues that aren&apos;t actually issues. Solution builds fine. Likely some sort of corruption of intellisense data, but this just shouldn&apos;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

cpponlineconf's tweet image. 🎤 The C++ Online 2026 Call for Speakers is now open!
We welcome submissions from all backgrounds &amp;amp; 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

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 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

harshtwt_'s tweet image. Day 05 of My DSA Journey🚀

Today’s learning:
&amp;gt;&amp;gt; Time &amp;amp; Space Complexities – Big O, efficiency, optimization
&amp;gt;&amp;gt; Arrays – syntax, operations, limitations
&amp;gt;&amp;gt; Patterns – Floyd’s &amp;amp; Pascal’s Triangle
💡Key takeaway:
Efficiency + Structure = Smarter Code 
#DSA #CPlusPlus #100DaysOfCode
harshtwt_'s tweet image. Day 05 of My DSA Journey🚀

Today’s learning:
&amp;gt;&amp;gt; Time &amp;amp; Space Complexities – Big O, efficiency, optimization
&amp;gt;&amp;gt; Arrays – syntax, operations, limitations
&amp;gt;&amp;gt; Patterns – Floyd’s &amp;amp; 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

RahulGupta_0's tweet image. 🚀 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 &amp;amp; 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

g_kirira's tweet image. 🚀 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

marcosecchi_'s tweet image. I have partnered again with Packt to author a new #UnrealEngine book! I will be writing about advanced #CPlusPlus programming techniques.
This time, I&apos;ll be using the amazing assets from @Quaternius.

More updates very soon!

#gamedev #gameprogramming #ue5 #gameplay #book

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


🧠 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

nikhilVerma0427's tweet image. 🧠 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

DevSagarKrJha's tweet image. 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 &amp;amp; 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

__Yasshhh's tweet image. 💻 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

tehami_326's tweet image. 🚀 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

RahulGupta_0's tweet image. 🚀 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

blak_gohst's tweet image. 💻 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


おはようございます。 今は "今の設計スタイルでは hdc は一語として扱うのが自然で" ってマジかー。受け入れていきます。 #Cplusplus

rainbow_man_123's tweet image. おはようございます。
今は &quot;今の設計スタイルでは hdc は一語として扱うのが自然で&quot; ってマジかー。受け入れていきます。
#Cplusplus

💻 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

__Yasshhh's tweet image. 💻 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

tehami_326's tweet image. 🚀 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

Pratikwebtech's tweet image. ✅ 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
Pratikwebtech's tweet image. ✅ 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

23GuptaSarthak's tweet image. 🧠 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
23GuptaSarthak's tweet image. 🧠 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

RahulGupta_0's tweet image. 🚀 Day 58 of #100DaysOfCode
Solved LeetCode 138 — Copy List with Random Pointer ✅
Idea:
🔹 Clone nodes &amp;amp; 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

RahulGupta_0's tweet image. 🚀 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

Pratikwebtech's tweet image. ✅ Day 62 of #100DaysOfCode
Took on two Linked List tasks today:
🔹 Rotate a Linked List
🔹 Flatten a Linked List
#DSA #Cplusplus #StriverSheet #LearnInPublic
Pratikwebtech's tweet image. ✅ Day 62 of #100DaysOfCode
Took on two Linked List tasks today:
🔹 Rotate a Linked List
🔹 Flatten a Linked List
#DSA #Cplusplus #StriverSheet #LearnInPublic

Day 18: C++ program to find the reverse of a number using a class. #100DaysOfCode #Cplusplus

aryansonie's tweet image. Day 18: C++ program to find the reverse of a number using a class.

#100DaysOfCode #Cplusplus

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 64 of #100DaysOfCode Practiced Doubly Linked List basics: 🔹 Insert a Node 🔹 Delete a Node Getting the hang of DLL operations! #DSA #Cplusplus #StriverSheet #LearninPublic

Pratikwebtech's tweet image. ✅ 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
Pratikwebtech's tweet image. ✅ 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

codewitharun9's tweet image. 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

Pratikwebtech's tweet image. ✅ 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

shivam21102005's tweet image. 🚀 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
shivam21102005's tweet image. 🚀 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 19: C++ program to find the factorial of a number using a class. #100DaysOfCode #Cplusplus

aryansonie's tweet image. Day 19: C++ program to find the factorial of a number using a class.

#100DaysOfCode #Cplusplus

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 68 of #100DaysOfCode Focused on stacks with recursion today: 🔹 Sort Stack 🔹 Reverse Stack #DSA #Cplusplus #StriverSheet #LearnInPublic

Pratikwebtech's tweet image. ✅ Day 68 of #100DaysOfCode
Focused on stacks with recursion today:
🔹 Sort Stack
🔹 Reverse Stack
#DSA #Cplusplus #StriverSheet #LearnInPublic
Pratikwebtech's tweet image. ✅ Day 68 of #100DaysOfCode
Focused on stacks with recursion today:
🔹 Sort Stack
🔹 Reverse Stack
#DSA #Cplusplus #StriverSheet #LearnInPublic

Loading...

Something went wrong.


Something went wrong.


United States Trends