🏢 LeetCode: Count Covered Buildings ✅ Sets track row/column extremes! Building covered if NOT at any boundary. Check all 4 directions with begin/rbegin. ⚡ O(n log n) with sets 🎯 4-direction check 💡 Sorted containers FTW #LeetCode #CPlusPlus #Sets #100DaysOfCode

me_sajeeb's tweet image. 🏢 LeetCode: Count Covered Buildings ✅

Sets track row/column extremes! Building covered if NOT at any boundary. Check all 4 directions with begin/rbegin.

⚡ O(n log n) with sets 
🎯 4-direction check 
💡 Sorted containers FTW

#LeetCode #CPlusPlus #Sets #100DaysOfCode

Would anyone like to be involved in my game's beta play/stress test? 🥹 Send me a message and I'll invite you to the Discord.... pic for attention lol #IndieGameDev #indiegame #cplusplus #playtest

TheNorseStar713's tweet image. Would anyone like to be involved in my game's beta play/stress test? 🥹 Send me a message and I'll invite you to the Discord.... 

pic for attention lol

#IndieGameDev #indiegame #cplusplus #playtest

✅Lecture06 Of DSA Course in C++ with @rohit_negi9 Today's I covered the Function. Deep diving in the function and solve the Problems . Know the how to make code reusable with the Function in cpp. "Consistency" 💪🚀 #DSA #CPP #CPlusPlus #Coding #Programming #100DaysOfCode 😊

Manishkumawatt's tweet image. ✅Lecture06 Of DSA Course in C++ with @rohit_negi9 
Today's I covered the Function.
Deep diving in the function and solve the Problems .
Know the how to make code reusable with the 
Function in cpp.
"Consistency" 💪🚀 
#DSA #CPP #CPlusPlus #Coding #Programming #100DaysOfCode 
😊

Hare Krishna 🙏🏼 🚀 Day 5 of Strike ( DSA with C++) 🔍 Covered Do–While Loop, Reverse Number, Decimal ↔ Binary, Factorial, Fibonacci, Armstrong No., and Square Root. ⚡ Feeling the improvement in logic & consistency every day. #DSA #CPlusPlus #LearnInPublic #100DaysOfCode

Shuuuuubham07's tweet image. Hare Krishna 🙏🏼 
🚀 Day 5 of Strike ( DSA with C++)
🔍 Covered Do–While Loop, Reverse Number, Decimal ↔ Binary, Factorial, Fibonacci, Armstrong No., and Square Root.
⚡ Feeling the improvement in logic & consistency every day.
#DSA #CPlusPlus #LearnInPublic #100DaysOfCode

Hare Krishna 🙏🏼 🚀 Day 4 of Strike journey (DSA with C++) 🔍 Learned pattern printing, solved questions to build logic, and covered while loops. ⚡ Concepts getting clearer step-by-step. #DSA #CPlusPlus #CodingJourney #LearningInPublic #100DaysOfCode #CoderArmy

Shuuuuubham07's tweet image. Hare Krishna 🙏🏼 
🚀 Day 4 of Strike journey (DSA with C++)
🔍 Learned pattern printing, solved questions to build logic, and covered while loops.
⚡ Concepts getting clearer step-by-step.
#DSA #CPlusPlus #CodingJourney #LearningInPublic #100DaysOfCode #CoderArmy

✨ Day 2 — STRIKE ✨ Topics: • Operators • if–else • switch • for loop Slow start, but a steady one. This time I really want to finish what I began. 💛 #STRIKE #Day2 #CPlusPlus #100DaysOfCode

Shrii_6's tweet image. ✨ Day 2 — STRIKE ✨

Topics:
• Operators
• if–else
• switch
• for loop

Slow start, but a steady one.
This time I really want to finish what I began. 💛

#STRIKE #Day2 #CPlusPlus #100DaysOfCode

Just applied for the C++ Developer role at Pratiti Technologies! 🚀 Excited for the opportunity and eager to explore where this journey leads. Sharing the link in case it helps someone in my network ↘️ placement.acciojob.com/job-drive-deta… #CareerOpportunities #CPlusPlus #TechRoles

adityacs22's tweet image. Just applied for the C++ Developer role at Pratiti Technologies! 🚀
Excited for the opportunity and eager to explore where this journey leads.
Sharing the link in case it helps someone in my network ↘️
placement.acciojob.com/job-drive-deta…

#CareerOpportunities #CPlusPlus #TechRoles
adityacs22's tweet image. Just applied for the C++ Developer role at Pratiti Technologies! 🚀
Excited for the opportunity and eager to explore where this journey leads.
Sharing the link in case it helps someone in my network ↘️
placement.acciojob.com/job-drive-deta…

#CareerOpportunities #CPlusPlus #TechRoles

I might have overdone the sequence chaining while brute-forcing #AdventOfCode day 2, but I have no regrets #cplusplus

tristanbrindle's tweet image. I might have overdone the sequence chaining while brute-forcing #AdventOfCode day 2, but I have no regrets 
#cplusplus

🚀 Day 1 of my DSA journey (Strike Batch) 🔍 Learned why computers use binary, how data is stored, intro to C++ syntax, and that cout/cin belong to the standard library. ⚡ The first session boosted my confidence. #DSA #CPlusPlus #Strike #LearningInPublic #100DaysOfCode

Shuuuuubham07's tweet image. 🚀 Day 1 of my DSA journey (Strike Batch)
🔍 Learned why computers use binary, how data is stored, intro to C++ syntax, and that cout/cin belong to the standard library.
⚡ The first session boosted my confidence.
#DSA #CPlusPlus #Strike #LearningInPublic #100DaysOfCode

Day 1 of my #WinterArcChallenge with @rohit_negi9 (Strike Batch) Today I learned the true fundamentals of C++. Also found out that cout and cin are not part of core C++, they come from the iostream library. Great start to the journey! 🚀 #CPlusPlus #CodingJourney

AayushKawadia's tweet image. Day 1 of my #WinterArcChallenge with @rohit_negi9  (Strike Batch)
Today I learned the true fundamentals of C++.
Also found out that cout and cin are not part of core C++, they come from the iostream library.
Great start to the journey! 🚀
#CPlusPlus #CodingJourney
AayushKawadia's tweet image. Day 1 of my #WinterArcChallenge with @rohit_negi9  (Strike Batch)
Today I learned the true fundamentals of C++.
Also found out that cout and cin are not part of core C++, they come from the iostream library.
Great start to the journey! 🚀
#CPlusPlus #CodingJourney

🚗 LeetCode: Count Collisions on a Road ✅ Two pointers! Skip boundary escapes (L's left, R's right). Count non-S between = collisions. ⚡ O(n) single pass 🎯 Boundary elimination 💡 All middle cars collide #LeetCode #CPlusPlus #TwoPointers #100DaysOfCode

me_sajeeb's tweet image. 🚗 LeetCode: Count Collisions on a Road ✅

Two pointers! Skip boundary escapes (L's left, R's right). Count non-S between = collisions.

⚡ O(n) single pass 
🎯 Boundary elimination 
💡 All middle cars collide

#LeetCode #CPlusPlus #TwoPointers #100DaysOfCode

Day 8: Back to basics to build a strong foundation. Spent today on Lecture 4 (Strike Batch). Realized that solving pattern problems is the best way to master flow control and loops. Consistency is the only cheat code. 💻✨ @rohit_negi9 #DSA #LearningJourney #Cplusplus #Code

rakibmondal_'s tweet image. Day 8: Back to basics to build a strong foundation. 

Spent today on Lecture 4 (Strike Batch). Realized that solving pattern problems is the best way to master flow control and loops.

Consistency is the only cheat code. 💻✨
@rohit_negi9 
#DSA #LearningJourney #Cplusplus #Code

🔐 LeetCode: Count Computer Unlocking Permutations ✅ First must be smallest! If valid → (n-1)! permutations. If not → 0. ⚡ O(n) validation + factorial 🎯 Constraint: first < all others 💡 Simple check, factorial multiply #LeetCode #CPlusPlus #Math #100DaysOfCode

me_sajeeb's tweet image. 🔐 LeetCode: Count Computer Unlocking Permutations ✅

First must be smallest! If valid → (n-1)! permutations. If not → 0.

⚡ O(n) validation + factorial 
🎯 Constraint: first &amp;lt; all others 
💡 Simple check, factorial multiply

#LeetCode #CPlusPlus #Math #100DaysOfCode

Check out my post, "static, inline, or an unnamed namespace what's the difference" I teach you the difference between a function declared `static`, `inline`, or in an unnamed namespace and what to use in modern C++. andreasfertig.com/blog/2023/03/s… #cplusplus #cpp


📅 Day - 1 of STRIKE Topics Covered: C++ Basics Number System Data Types Thanks 🙏 to @rohit_negi9 Bhaiya for an amazing session! @CoderArmy #STRIKE #CPlusPlus #Coding #100DaysOfCode #100DaysOfCoding

YashSainiCodes's tweet image. 📅 Day - 1 of STRIKE

Topics Covered:
C++ Basics
Number System
Data Types

Thanks 🙏 to @rohit_negi9 Bhaiya for an amazing session!

@CoderArmy #STRIKE #CPlusPlus #Coding 
#100DaysOfCode #100DaysOfCoding
YashSainiCodes's tweet image. 📅 Day - 1 of STRIKE

Topics Covered:
C++ Basics
Number System
Data Types

Thanks 🙏 to @rohit_negi9 Bhaiya for an amazing session!

@CoderArmy #STRIKE #CPlusPlus #Coding 
#100DaysOfCode #100DaysOfCoding

Không có kết quả nào cho "#cplusplus"
Không có kết quả nào cho "#cplusplus"
Không có kết quả nào cho "#cplusplus"
Loading...

Something went wrong.


Something went wrong.


United States Trends