#100daysofleetcode 검색 결과
🧩 Day 80 of my #100DaysOfLeetCode Challenge! #LeetCode #100DaysOfCode #Day80 #DSA #CodingJourney #ProblemSolving #CodeNewbie #SoftwareEngineer #DevelopersJourney #Cplusplus #LearningInPublic #TechCommunity
Day 18 of #100DaysOfLeetcode #100daysofcodechallenge
Day 36 of #100DaysOfLeetcode #100daysofcodechallenge
مش بـ post بقالي شوية بس الـ challenge لا تزال مستمرة. Day 24 of #100DaysOfLeetcode #100daysofcodechallenge
Day 97 of #100DaysOfLeetCode Problems: - Unique Length-3 Palindromic Subsequences - Largest Substring Between Two Equal Characters #100DaysOfCode
Day 99 of #100DaysOfLeetCode Problems: - Intersection of Two Arrays - First Unique Character in a String - Number of Zero-Filled Subarrays #100DaysOfCode
Day 87 of #100DaysOfLeetCode Problems: - Find All Anagrams in a String - Find the Index of the First Occurrence in a String #100DaysOfCode
💼 LinkedIn Post – Day 92 of #100DaysOfLeetCode Challenge 🚀 Day 92 of #100DaysOfLeetCode Challenge #CodingChallenge #TechTwitter #Programmers #ProblemSolving #MathematicsInCode #CodeNewbie #DevCommunity
Day 84 of #100DaysOfLeetCode Problems: - Maximum Number of Balloons - Minimum Rounds to Complete All Tasks - Rearrange Characters to Make Target String - Minimum Number of Operations to Make Array Empty #100DaysOfCode
Day 100 of #100DaysOfLeetCode Problems: - Non-decreasing Array - Time Needed to Buy Tickets - Number of Students Unable to Eat Lunch - Check If a String Contains All Binary Codes of Size K #100DaysOfCode
#Day100 Problem: Squares of a Sorted Array (LeetCode #977) My approach 👇 1️⃣ Square each element 2️⃣ Sort the array using Arrays.sort() ✔️ Works fine with O(n log n) complexity. ⚡ Next goal: Try the two-pointer O(n) approach for optimization. #100DaysOfLeetCode #Java #Coding #DSA
Day 96 of #100DaysOfLeetCode Problems: - Minimum Number of Swaps to Make the String Balanced #100DaysOfCode
Day 83 of #100DaysOfLeetCode Problems: - Sequential Digits - Range Sum Query - Immutable - Find All Numbers Disappeared in an Array #100DaysOfCode
Day 89 of #100DaysOfLeetCode Problems: - Minimum Number of Operations to Make Array Continuous #100DaysOfCode
Day 94 of #100DaysOfLeetCode Problems: - Grid Game - Path Crossing - Maximum Score After Splitting a String #100DaysOfCode
💼 LinkedIn Post – Day 92 of #100DaysOfLeetCode Challenge 🚀 Day 92 of #100DaysOfLeetCode Challenge #CodingChallenge #TechTwitter #Programmers #ProblemSolving #MathematicsInCode #CodeNewbie #DevCommunity
Day 91 of 100 Days of Leetcode Challenge - Problem 3354: Make Array Elements Equal to Zero #100DaysOfLeetcode #LeetcodeChallenge #ProblemSolving #CodingLife #TechCareer #AlgorithmDesign #LeetcodeSolutions #CodingCommunity
🧩 Day 80 of my #100DaysOfLeetCode Challenge! #LeetCode #100DaysOfCode #Day80 #DSA #CodingJourney #ProblemSolving #CodeNewbie #SoftwareEngineer #DevelopersJourney #Cplusplus #LearningInPublic #TechCommunity
🧠 Day 79 of #100DaysOfLeetCode Pointer manipulation mastery Edge cases: null lists, duplicates, uneven lengths Space optimization techniques #100DaysOfCode #Day79 #LeetCode #DSA #Coding #ProblemSolving #CodeNewbie #TechLearning #SoftwareEngineering #TUFWinterArc
🧠 Day 78/100 — LeetCode Challenge Problem: 3349. Adjacent Increasing Subarrays Detection I Topic: Arrays | Sliding Window #100DaysOfLeetCode #Day78 #LeetCode #DSA #Coding #CPlusPlus #TechTwitter #ProblemSolving #CodeNewbie
I'm starting 100 days of leetcode starting tomorrow #Dsa #100daysofleetcode
🚀 Day 71/100 — Reverse Linked List II (LeetCode 🔥 Learned: pointer juggling + dummy node simplifies everything. Handles head/tail reversals cleanly! #Day71 #100DaysOfLeetCode #LeetCode #Coding #CPlusPlus #DSA #Algorithms #100DaysOfCode #CodeNewbie #TechTwitter #DevCommunity
Concluding Day 10: ✅ #100DaysOfLeetcode ✅ AWS Lab practice ✅ Watched LLMOps Webinar ✅ Kannada Basics ✅ Guitar Basics
Today, I learnt what is a binary search tree (BST), and I solved 701. Insert into a Binary Search Tree on LeetCode, using Go! You can find out more about what is a binary search tree in the following Wikipedia page 🔗 en.wikipedia.org/wiki/Binary_se… #100DaysOfLeetCode – #Day26 Done!
Today, I solved recursively the challenge 235. Lowest Common Ancestor of a Binary Search Tree on LeetCode, using Go! However I did not solve it efficiently 🙂 I am gonna think of a way to solve it more efficiently. Happy LeetCoding! #100DaysOfLeetCode – #Day25 Done!
🚀 Day 59/100 of #100DaysOfLeetCode 🚀 📌 Problem: 78. Subsets #100DaysOfCode #LeetCode #DSA #Coding #ProblemSolving #Recursion #Backtracking #TechTwitter #CodeNewbie #Developer #LearnInPublic
Yesterday, I solved recursively the challenge 100. Same Tree on Leetcode. Today, I solved the challenge 572. Subtree of Another Tree which is like 100. Same Tree but you have to check equality for each node in the root binary tree. #BinaryTree #100DaysOfLeetCode – #Day24 Done!
🚀 Day 57 of #100DaysOfLeetCode! Today's problem was [Problem Name & Number]. It was a great challenge involving [mention topic, e.g., string manipulation, dynamic programming, two-pointers]. #LeetCode #CodingChallenge #SoftwareDevelopment #Tech #ProblemSolving
Today, following binary tree questions, I solved 110. Balanced Binary Tree on LeetCode, using Go! I still don't quite get binary tree problems... #100DaysOfLeetCode – #Day22
🚀 Day 56 of #100DaysOfLeetCode 🚀 Solved LeetCode 3005: Count Elements With Maximum Frequency ✅ 🔹 Learned to optimize from brute-force O(n^2) → O(n) using hashing & frequency counting #LeetCode #DSA #100DaysOfCode #Cplusplus #ProblemSolving
Day 55 of #100DaysOfLeetCode 🎯 Solved a subsequence generation problem today! 🔥 🔹 Brute Force: recursion (include/exclude) → O(2^n) 🔹 Optimal: bitmasking → O(n·2^n) Every problem = a step closer 💪 #LeetCode #DSA #ProblemSolving #CodingChallenge #Cplusplus #HiringNow
Concluding Day 9: ✅ #100DaysOfLeetcode ✅ AWS Lab practice ✅ Watched LLMOps Webinar ✅ Kannada Basics ✅ Guitar Basics
📁 tedog.site/f/y4p18y11k0e 📁 tedog.site/f/444wd5vfzwi 📁 tedog.site/f/9y8ockyppzh 📁 tedog.site/f/95xh3hgbevo 📁 tedog.site/f/vvvsaul66fd 📁 tedog.site/f/blh0bwiqpbv ewnavd.us
Day 31–32/100 of #100DaysOfCode - Yesterday, I took a break to touch grass and clear my head, and still managed to solve 1 LeetCode problem on the go. - Today, I solved 2 LeetCode problems and started learning TypeScript!
Day 100: #100DaysOfCode MADE IT! In 100 Days I’ve: • Learned advanced HTML/CSS & basic JavaScript, Python, SQL & Node • Built my Portfolio website at CodeEveryDamnDay.com • Built two games (Dragon Drop, Rocket Blaster) • Built an app (GPS Converter) What a wild ride! 🎢
day-1 of #100DaysOfCode (6 hour grind) - solved 2 lc questions. -revised dbms : • practiced some ER diagrams. • relational model ,key constraints, referential constraints, integrity constraints. - made my project's overall architecture. -react: state,components, re-rendering
tedog.site/f/8cxxl9iw8lo tedog.site/f/e24j74mo1yz tedog.site/f/gnx138rlgen tedog.site/f/mjuz3yz1don tedog.site/f/7nioty05t1j tedog.site/f/e16k58tlkb5 Tedhok.arj.sr
ˏˋ✨本日のフリー素材✨ˎˊ˗ / 11月1日 #紅茶の日 \ ▷ いいね❤&RP🔁で使用可能! #Vtuber素材 #Vtuberフリー素材 ■Booth┋サムネ素材販売中■ materiale.booth.pm
vdey.de/e/9tib2gzpo58x vbqy.de/e/hYjoagevare6 vdey.de/e/5p9mfbwoht6b vdey.de/e/dk5i0qvfdo17 vdey.de/e/ztzvd8nob4f1
⠀⠀⠀⠀⠀⠀⠀⠀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ ⠀⠀⡼⠣⢤⡀⠤⡜⢀⢿⠛⠛⡄ ⠀⠀⣧⠀⠀⠀⠘⢄⡱⡉⢹⡍⢱⠀⠀⠀⠀⠀⠀⠀ ⠀⢠⠃⠀⠀⠀⠀⠀⠀⠈⠓⠐⢱ ⠠⢼⠄⢰⣶⠀⠀⠀⠀⣶⡆⠀⣺⣀⠀⠀ ⠀⠋⡫⣄⡀⠀⠘⠛⠀⠀⢀⣰⡮⠄⠀⠀⠀⠀⠀⠀ ⠀⠌⡏⠀⠈⡗⠒⠒⠒⢻⠁⠀⢸ ⠀⠀⠑⠊⠉⠀⠀⠀⠀⠀⠉⠑⠈
Day 11 of #100DaysofCode 🙂 Webdev- Lecture 62 and 63 ✅ Arrays in js ✅ 2 loops question ✅ Applied phy lec ✅ Calculus 👺 ✅ 16000 steps ✅ Saturday ko bhi working rakh diya clg walo ne 🤡😭 #WebDev #CodingJourney #collegelife #buildinpublic
pideq.de/e/tcc80qbiveli pideq.de/e/sccpxlgkhll6 tideq.de/e/8wyupdtq8cz pideq.de/e/9hyhn9jt7byq pideq.de/e/gc0b9lzwpo2d pideq.de/e/zlrygjaf84n0
✅ Day 212: LeetCode Grind 🧩 3289. The Two Sneaky Numbers of Digitville 🔹 Approach: Mathematical / Observation ⚡ Identified the two special numbers by analyzing digit patterns and constraints #100DaysOfCode #LeetCode
Day 60 of #100DaysOfCode Tried this using plain HTML and CSS. Note that the design on the right is CSS grids 😭
Day 68✅ Day full of productivity 🦾 🧩 Solved #LeetCode daily. 💡 Learn about lazy import in react. 🛣️ Built and finalized #Frontend routes, including ProtectedRoute & PublicOnlyRoute. 🎨 Helped design an Instagram grid for my club. Brick by brick 🧱 #webdev #100DaysOfCode
Back to Grind! Day [62/ 100] of #100daysofcode -> Solved POTD -> Solved 4 LC problems (greedy, backtracking) -> Continued backend -> revisited previous topics where I left -> Next will learn server side rendering, authentication #LeetCode #dsa #buildinpublic
Day 53 of #100DaysOfCode Learned how to move data between MySQL & a distributed file system using SQOOP. Then, linked list challenge on @LeetCode! I actually came up with the optimal algorithm (gasp😮), but it took me a bit of time to implement/refactor😊. #100DaysOfMLCode
Something went wrong.
Something went wrong.
United States Trends
- 1. Vandy 5,605 posts
- 2. Vanderbilt 5,240 posts
- 3. French Laundry 2,728 posts
- 4. Jeremiah Smith N/A
- 5. Christmas 124K posts
- 6. #HookEm 2,335 posts
- 7. Clemson 7,703 posts
- 8. Dalot 15.8K posts
- 9. Amad 19K posts
- 10. Arch Manning 1,989 posts
- 11. ESPN 77.5K posts
- 12. Jim Knowles N/A
- 13. Colin Simmons N/A
- 14. Disney 88.3K posts
- 15. Buckeyes 2,732 posts
- 16. Julian Sayin 1,649 posts
- 17. Ryan Wingo N/A
- 18. Jojo Trader N/A
- 19. #MUFC 19.4K posts
- 20. Casemiro 20.4K posts