#linkedlist kết quả tìm kiếm
🚀 Day 95 of #100DaysOfDSA Started learning Doubly Linked List today! 🔗 ✔️ Understanding prev & next pointers ✔️ Traversal in both directions ✔️ Insertions & deletions made easier Excited to dive deeper! 😄 #DSA #LinkedList #DoublyLinkedList #CodingJourney #100DaysOfCode 🚀
🗓️ Day 79 of #100DaysOfDSA Solved LC 160 - Intersection of Two Linked Lists ▪️Brute Force: O((n₁+n₂) * log n) time & O(n) space ▪️Better: O(n₁+2n₂) time & O(1) space ▪️Optimized: O(n₁+n₂) time & O(1) space #DSA #LinkedList #LeetCode #ProblemSolving #learningtoearning
🚀 Day 84 of #100DaysOfDSA 🚀 Started Linked List today! 🔗 Learned what it is, why it’s non-contiguous, and when to use it. ✨ Key Insight: Great for dynamic size & frequent insert/delete ops. #DSA #LinkedList #100DaysOfCode #CodingJourney 🚀
Day 45 of #TUFWinterArc ⚡ Solved medium LL problems from Striver’s A2Z DSA Sheet by @takeUforward_ and @striver_79 - Add One to Number & Find Middle of LL. Fast–slow pointers + clean traversal. Confidence rising. #DSA #LinkedList #Striver #takeUforward
🚀 Day 85 of #100DaysOfDSA 🚀 Learned Insertion & Deletion in Linked List 🔹 Insertion: Add new nodes at head, tail, or any position. 🔹 Deletion: Update pointers to remove nodes safely. #DSA #LinkedList #CodingJourney #100DaysOfCode #ProblemSolving 🚀
✅23/100 Finally cracked "Palindrome Linked List"! 😎 It's so satisfying to move beyond the easy array conversion to the elegant in-place reversal method. All thanks to @akshaymarch7 🙏 What's your favorite DSA topic to get lost in? 👇 #DSA #LinkedList #Optimization #BigO
🗓️Day 81 of #100DaysOfDSA Explored Doubly Linked Lists & solved 3 problems: 1️⃣ Delete all occurrences of a key ▪️O(n) time & O(1) space 2️⃣ Find pairs with given sum ▪️O(2n) time & O(n) space 3️⃣ Remove duplicates ▪️O(n) time & O(1) space #DSA #LinkedList #connect #grow #viral
🚀 Day 97 of #100DaysOfDSA 🚀 Problem Solved: Find all Pairs with Given Sum in DLL ✨ Built a Doubly Linked List ✨ Traversed using two pointers ✨ Found all valid pairs matching the target sum #DSA #LinkedList #DoublyLinkedList #Coding #Python #100DaysOfCode #LeetCode🚀
Day 14 of #TUFWinterArc ❄🔥 Linked List grind continues 💪 Solved some medium-level problems today: ➕ Add One to Number (LL) 🧩 Find & Delete Middle Node 🔁 Check if Linked List is Palindrome Leveling up with pointers and edge cases 🧠 @takeUforward #DSA #LinkedList
Solved: “Convert Binary Number in a Linked List to Integer” 🔢 🧠 Used a simple traversal: res = res * 2 + node->val to convert binary to decimal. Fast, clean, and C++ efficient! #LeetCode #LinkedList #Cplusplus #DSA #100DaysOfCode #TechTwitter
🚀 DSA Strike – Day 27 Today was all about mastering Linked Lists 🔗 ✅ Reversed a Linked List ✅ Checked if it’s a Palindrome Each pointer move felt like solving a mystery 🧩 #DSA #100DaysOfCode #LinkedList #CodingJourney
Day 45 of #TUFWinterArc ⚡ Solved medium LL problems from Striver’s A2Z DSA Sheet by @takeUforward_ and @striver_79 - Add One to Number & Find Middle of LL. Fast–slow pointers + clean traversal. Confidence rising. #DSA #LinkedList #Striver #takeUforward
Solved LeetCode 203 – Remove Linked List Elements Used two simple linked-list tricks here: • First skip all matching nodes at the head. • Then scan through and unlink nodes equal to the target value. #leetcode #dsa #linkedlist
Completed "Adding Nodes to Linked List" (Namaste DSA by @akshaymarch7 bhaiya ) • Insert at head / tail • Insert at position • Pointer logic understanding 👨💻 Next: Deletion & Reverse LL 🚀 #DSA #LinkedList #NamasteDSA @shubhamsingh__1
Day 43 of #TUFWinterArc ⚡ Completed the Logic - Building Linked List problems from Striver’s A2Z DSA Sheet by @takeUforward_ and @striver_79 . Clearer structure, stronger pointer intuition. #DSA #LinkedList #Striver #takeUforward
Solved LeetCode 83 – Remove Duplicates from Sorted List • Rebuilt a new list using only unique values — simpler logic but uses extra space. • Then optimized with in-place removal — just skip duplicate nodes, very efficient. #leetcode #dsa #linkedlist
Completed Design Linked List (Namaste DSA) today 🚀 Understanding nodes, pointers & traversal was super interesting 💡 Small consistent progress every day → big results #dsa #linkedlist @akshaymarch7 @shubhamsingh__1
Solved LeetCode 21 today! Merged two sorted linked lists using two approaches: • Creating a new merged list node-by-node • Reusing original nodes for an efficient in-place merge #leetcode #dsa #linkedlist
Days 23 & 24 of #TUFWinterArc 🔗⚡ 🧩 Solved 3 medium Linked List logic-building problems: • Add 2 Numbers in LL • Segregate Odd & Even Nodes • Remove Nth Node from the Back @takeUforward_ #DSA #LinkedList
Completed Introduction to Linked List from #NamasteDSA today! 🚀 Understanding how Linked Lists solve array limitations like fixed size & costly insert/delete operations. Excited for upcoming implementations 🔥 #DSA #LinkedList #NamasteDSA @akshaymarch7 @shubhamsingh__
Solved LeetCode 141 today! Used the fast & slow pointer technique to detect a cycle in a linked list. If the two pointers ever meet — cycle found. #leetcode #dsa #linkedlist #twopointers
Back to the grind 💻🔥 Restarted my DSA journey from Linked Lists today and also did a full revision of OOPs. Feeling pumped to get consistent again! 🚀 #DSA #CodingJourney #LinkedList #OOPS #Consistency”
🚀 Day 95 of #100DaysOfDSA Started learning Doubly Linked List today! 🔗 ✔️ Understanding prev & next pointers ✔️ Traversal in both directions ✔️ Insertions & deletions made easier Excited to dive deeper! 😄 #DSA #LinkedList #DoublyLinkedList #CodingJourney #100DaysOfCode 🚀
✅23/100 Finally cracked "Palindrome Linked List"! 😎 It's so satisfying to move beyond the easy array conversion to the elegant in-place reversal method. All thanks to @akshaymarch7 🙏 What's your favorite DSA topic to get lost in? 👇 #DSA #LinkedList #Optimization #BigO
✅ Solved 19. Remove Nth Node From End of List using the one-pass approach! Mastered the use of two pointers to efficiently handle node deletion from the end. 🧠📌 #DSA #LinkedList #LeetCode #TwoPointerTechnique #ProblemSolving @ChaiCodeHQ @PrateekJain027 @Hiteshdotcom
🗓️ Day 79 of #100DaysOfDSA Solved LC 160 - Intersection of Two Linked Lists ▪️Brute Force: O((n₁+n₂) * log n) time & O(n) space ▪️Better: O(n₁+2n₂) time & O(1) space ▪️Optimized: O(n₁+n₂) time & O(1) space #DSA #LinkedList #LeetCode #ProblemSolving #learningtoearning
✅ Day 71 of #100DaysOfCode 😮💨 Aj ke liye bas itna hi... kal milte hai naye sawalo ke sath! 🚀 #DSA #LinkedList #CodingDiaries
🚀 Day 85 of #100DaysOfDSA 🚀 Learned Insertion & Deletion in Linked List 🔹 Insertion: Add new nodes at head, tail, or any position. 🔹 Deletion: Update pointers to remove nodes safely. #DSA #LinkedList #CodingJourney #100DaysOfCode #ProblemSolving 🚀
🚀 Day 84 of #100DaysOfDSA 🚀 Started Linked List today! 🔗 Learned what it is, why it’s non-contiguous, and when to use it. ✨ Key Insight: Great for dynamic size & frequent insert/delete ops. #DSA #LinkedList #100DaysOfCode #CodingJourney 🚀
🚀Day 46/100: Mastering Linked List Manipulations – One Node at a Time! 61. Rotate List 142. Linked List Cycle II #100DaysOfCode #DataStructures #LinkedList #CodingChallenge #JavaProgramming #TechWithManohar #SoftwareEngineering #ProblemSolving #DSAinJava #FloydCycleDetection
Day 128 – LeetCode 23 ✅ Merge K Sorted Lists (Hard) Used min-heap to merge all lists in O(N log k) time. #LeetCode #Heap #LinkedList #C++
Day 31 of my #100DaysOfCode challenge!🚀 ✅Problem no. ->237,1757,584 #LeetCode #linkedlist #MySQL ✅Explored some AI Tools ->Notebook LM ->Coddy.tech ->warp.dev ->Napkin AI ->Gamma AI ->Replit #buildinpublic #developing #DevCommunity
🚀Day 44 of #100DaysOfCoding Every line of code brings me closer to mastery. Learning, building, and growing—one day at a time. 2. Add Two Numbers 92. Reverse Linked List II #LinkedList #JavaProgramming #DataStructures #CodingChallenge #LeetCode #ProblemSolving #TechJourney
🚀 Day 50/100: Halfway There! Crushing Code & Staying Consistent 86. Partition List 147. Insertion Sort List #100DaysOfCode #Day50 #LinkedList #InsertionSort #JavaProgramming #LeetCodeChallenge #DSAWithJava #TechWithManohar #CodingJourney #BuildInPublic #connect #FutureTowork
Something went wrong.
Something went wrong.
United States Trends
- 1. Black Friday 445K posts
- 2. Nebraska 9,923 posts
- 3. Iowa 11.6K posts
- 4. Jalon Daniels N/A
- 5. Rhule 1,724 posts
- 6. Black Ops 7 Blueprint 8,641 posts
- 7. Go Birds 10.9K posts
- 8. Sumrall 2,915 posts
- 9. Lane Kiffin 7,486 posts
- 10. Egg Bowl 7,163 posts
- 11. #Huskers 1,098 posts
- 12. Kamario Taylor N/A
- 13. Mississippi State 4,644 posts
- 14. UConn 5,247 posts
- 15. #kufball N/A
- 16. Black Ops 7 XP 6,339 posts
- 17. Kansas 16K posts
- 18. Stribling N/A
- 19. Swift 53.6K posts
- 20. Emmett Johnson 1,035 posts