Explore tweets tagged as #gfg160daysofcode
@Achyut117
Achyut CHAUDHARY
2 months
πŸ” Day2of #GFG160DaysOfCode.πŸ“Œ Problem: Reverse an Array.πŸ‘¨β€πŸ’» Language: Java.πŸ’‘ Logic: Two-pointer technique β€” swap from both ends till middle.πŸ“ˆ Lesson: Efficient in-place array manipulation without extra space!.#Java #DSA #100DaysOfCode
Tweet media one
0
0
4
@Achyut117
Achyut CHAUDHARY
2 months
βœ… Day 2 of #GFG160DaysOfCode.πŸ“Œ Problem: Move All Zeroes to End.πŸ“Š Status: Solved using in-place logic in Java.πŸ“ˆ Learned how to maintain relative order without extra space. Practicing daily to improve array manipulation skills!.#100DaysOfCode #Java #CodingChallenge. Screenshot
Tweet media one
0
0
4
@Nikhil_120kmph
Nikhil Bhardwaj
5 months
Day 4 of #GFG160DaysOfCode βœ….Solved Left Rotate an Array by d Places (In-Place) πŸ”„.πŸ‘‰ No extra space used, mastered array reversal trick! πŸ’‘.Every day, a new level unlocked! πŸš€ .#gfg160Day .@geeksforgeeks
Tweet media one
0
0
3
@Nikhil_120kmph
Nikhil Bhardwaj
5 months
Day 6 of #GFG160DaysOfCode βœ….Solved Majority Element II πŸ”.πŸ‘‰ Found all elements appearing more than ⌊n/3βŒ‹ times using Boyer-Moore Voting Algorithm πŸ’‘.Loving the algorithmic depth! πŸš€.#gfg160Day.@geeksforgeeks
Tweet media one
0
0
1
@Nikhil_120kmph
Nikhil Bhardwaj
5 months
Day 5 of #GFG160DaysOfCode βœ….Solved Next Permutation πŸ”’.πŸ‘‰ Implemented in-place algorithm to rearrange numbers into the next lexicographical order! πŸ’‘.Getting better at mastering tricky logic! πŸš€.#gfg160Day.@geeksforgeeks
Tweet media one
0
0
4
@MohitVe51318117
Mohit Verma
11 days
πŸš€ Day 53 of #gfg160DaysOfCode #GFG #DSA.βœ… Solved: Find the Pair with Sum Closest to Target.🧠 Logic: Sorted array, used two-pointer approach.πŸ” Time: O(n log n) | Space: O(1).πŸ’» Python | πŸ§ͺ 1115/1115.⚑ 0.22 sec | 🎯 1/1 | πŸ’― 2/2.πŸ“ˆ Total Score: 189.@geeksforgeeks
Tweet media one
0
0
2
@mandira9051
Mandira Singh
2 months
DAY 98.Approach : Find median in a stream.TC:O(n logn).SC:O(n).#gfg160 #GFG #gfg160daychallenge #gfg160daysofcode
Tweet media one
1
0
24
@Sairamgoli07
Sai Ram
2 months
Day 92 of #GFG160DaysOfCode 🌳.Problem: Find LCA of two nodes in BST.πŸ” Traverse down based on node values.First split point = LCA!.#BST #LCA #Python #DSA
Tweet media one
0
0
0
@Jatin_lifo82
jatin lifo
4 months
Day 42 /160 πŸ‘¨β€πŸ’» @geeksforgeeks #160days .QuestionπŸ™‹. Two Sum Pair with Given Sum. Easyβœ…. #gfg160 #geeksstreak2025 #GFG2025 .#DSA #CPP25 #CodingChallenge .#gfg160daysofcode
Tweet media one
0
0
1
@bobbyXplorer
Akshat Dwivedi
5 months
Day 4/160βœ… @geeksforgeeks .Problem: Rotate Array .Test Cases Passed: 1115/1115.Time Taken: 0.19s.#gfg160 #GFG160DaysOfCode #DSA #CodeDaily
Tweet media one
0
0
2
@bobbyXplorer
Akshat Dwivedi
5 months
Day 3/160βœ… @geeksforgeeks .Problem: Reverse an Array.Test Cases Passed: 1115/1115.Time: 0.08s.#gfg160 #GFG160DaysOfCode #DSA #CodeDaily
Tweet media one
0
0
2
@bobbyXplorer
Akshat Dwivedi
5 months
Day 1/160 βœ… @geeksforgeeks .Problem: Second Largest.Test Cases Passed: 1120/1120.Time: 0.29s.#GFG160DaysOfCode #DSA #CodeDaily
Tweet media one
0
0
2
@bobbyXplorer
Akshat Dwivedi
5 months
Day 2/160βœ… @geeksforgeeks .Problem: Move All Zeros to End.Test Cases Passed: 1115/1115.Time: 0.2s.#GFG160DaysOfCode #gfg160 #DSA #CodeDaily
Tweet media one
0
0
4
@Sairamgoli07
Sai Ram
2 months
Day 81 of #GFG160DaysOfCode 🌲.Problem: Height of a Binary Tree.#BinaryTree #TreeHeight #Recursion #DSA #Python #GFGPractice #100DaysOfCode
Tweet media one
0
0
0
@Sairamgoli07
Sai Ram
2 months
Day 83 of #GFG160DaysOfCode 🌲.Problem: Construct Binary Tree from Inorder & Preorder Traversal.#BinaryTree #TreeConstruction #Python #DSA #GFGPractice #100DaysOfCode
Tweet media one
0
0
0
@Sairamgoli07
Sai Ram
2 months
Day 82 of #GFG160DaysOfCode 🌳.Problem: Diameter of a Binary Tree.#BinaryTree #DFS #TreeDiameter #DSA #Python #GFGPractice #100DaysOfCode
Tweet media one
0
0
0
@Sairamgoli07
Sai Ram
2 months
Day 86 of #GFG160DaysOfCode 🌳.Problem: Maximum Path Sum in Binary Tree.βœ”οΈ Finds the max sum of any path (can start & end at any node).βœ”οΈ Uses recursion & post-order traversal.Classic tree DP problem!.#BinaryTree #MaxPathSum #DSA #Python #GFGPractice #100DaysOfCode
Tweet media one
0
0
1
@Sairamgoli07
Sai Ram
2 months
Day 87 of #GFG160DaysOfCode 🌲.Problem: Count Paths with Sum K in Binary Tree.βœ”οΈ Uses Prefix Sum + HashMap.βœ”οΈ Efficient O(N) solution with recursion.A classic path sum counting trick!.#BinaryTree #PrefixSum #DSA #Python #GFGPractice #100DaysOfCode
Tweet media one
0
0
1
@Sairamgoli07
Sai Ram
2 months
Day 85 of #GFG160DaysOfCode 🌿.Problem: Boundary Traversal of Binary Tree.πŸ”Έ Left Boundary ➑️ Leaves ➑️ Right Boundary (in reverse).πŸ”Έ Avoids duplicate leaves.πŸ”Έ Classic tree interview question.#BinaryTree #BoundaryTraversal #Python #DSA #GFGPractice #100DaysOfCode
Tweet media one
1
0
1