#30daysofdsachallenge search results

"Day 10 of my #30DaysOfDSAChallenge! Today, I tackled array rotations. Implemented an efficient in-place algorithm to rotate an array by k positions using the reverse technique. This approach minimizes extra space and optimizes performance! #DSA #CodingChallenge #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 10 of my #30DaysOfDSAChallenge! Today, I tackled array rotations.  Implemented an efficient in-place algorithm to rotate an array by k positions using the reverse technique. This approach minimizes extra space and optimizes performance! #DSA #CodingChallenge #100DaysOfCode"

"Day 9 of my #30DaysOfDSAChallenge is complete! Today, I tackled the classic palindrome problem with a twist – efficiently skipping non-alphanumeric characters and using the two-pointer technique for optimal performance. #DSA #CodingChallenge #Java #CodingJourney #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 9 of my #30DaysOfDSAChallenge is complete! Today, I tackled the classic palindrome problem with a twist – efficiently skipping non-alphanumeric characters and using the two-pointer technique for optimal performance. #DSA #CodingChallenge #Java #CodingJourney #100DaysOfCode"

"Day 27 of #30DaysOfDSAChallenge Solved "Delete the Middle Node of a Linked List" today! 🚀 Had to remove the middle node of a linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 27 of #30DaysOfDSAChallenge Solved "Delete the Middle Node of a Linked List" today! 🚀 Had to remove the middle node of a linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

#Day10of #30daysofDSAChallenge 💡 Topic: Arrays and Hashing Question: RemoveElement

KalyanReddy800's tweet image. #Day10of #30daysofDSAChallenge 💡
Topic: Arrays and Hashing  
Question: RemoveElement

"Day 24 of #30DaysOfDSAChallenge Solved the "Set Matrix Zeroes" problem today! 🌟 Had to set entire rows and columns to zero when an element is zero, all in place! #DSA #Java #LeetCode #Coding #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 24 of #30DaysOfDSAChallenge Solved the "Set Matrix Zeroes" problem today! 🌟 Had to set entire rows and columns to zero when an element is zero, all in place! #DSA #Java #LeetCode #Coding #100DaysOfCode"

"Day 18 of #30DaysOfDSAChallenge Solved the "Minimum Jumps to Reach the End" problem today! 🧩 Strategized to find the least number of jumps needed to traverse the array #Java #DSA #LeetCode #CdingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 18 of #30DaysOfDSAChallenge Solved the "Minimum Jumps to Reach the End" problem today! 🧩 Strategized to find the least number of jumps needed to traverse the array #Java #DSA #LeetCode #CdingLife #30DaysOfCode"

"Day 20 of #30DaysOfDSAChallenge Tackled the "Majority Element" problem today! 🧩 Found the element that appears more than half the time in the array #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 20 of #30DaysOfDSAChallenge Tackled the "Majority Element" problem today! 🧩 Found the element that appears more than half the time in the array #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

"Day 22 of #30DaysOfDSAChallenge Challenge of the day: Finding the length of the last word in a string. This one was simple yet reminded me of the importance of handling spaces carefully! #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 22 of #30DaysOfDSAChallenge Challenge of the day: Finding the length of the last word in a string. This one was simple yet reminded me of the importance of handling spaces carefully! #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

"Day 21 of #30DaysOfDSAChallenge Today's challenge: Reversing a portion of a linked list between two positions! Managed to flip nodes between left and right in a singly linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 21 of #30DaysOfDSAChallenge Today's challenge: Reversing a portion of a linked list between two positions!  Managed to flip nodes between left and right in a singly linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

"Day 14 of #30DaysOfDSAChallenge Today’s challenge: "Remove Duplicates from Sorted Array." Implemented an in-place solution in Java to ensure each element appears at most twice. #Java #DSA #CodingChallenge #100DaysOfCode "

Gauri_suthar_'s tweet image. "Day 14 of #30DaysOfDSAChallenge Today’s challenge: "Remove Duplicates from Sorted Array." Implemented an in-place solution in Java to ensure each element appears at most twice. #Java #DSA #CodingChallenge #100DaysOfCode "

#Day4of #30daysofDSAChallenge 💡 Topic: Arrays and Hashing Question: Group Anagrams

KalyanReddy800's tweet image. #Day4of #30daysofDSAChallenge 💡 
Topic: Arrays and Hashing     
Question: Group Anagrams

#Day9of #30daysofDSAChallenge 💡 Topic: Arrays and Hashing Question: LenthOfLastWord

KalyanReddy800's tweet image. #Day9of #30daysofDSAChallenge 💡
Topic: Arrays and Hashing 
Question: LenthOfLastWord

"Day 25 of #30DaysOfDSAChallenge Solved the "Largest Rectangle in Histogram" problem! Tackled finding the largest rectangular area in a histogram—definitely a hard one, but really rewarding! #DSA #Java #LeetCode #Coding #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 25 of #30DaysOfDSAChallenge Solved the "Largest Rectangle in Histogram" problem! Tackled finding the largest rectangular area in a histogram—definitely a hard one, but really rewarding! #DSA #Java #LeetCode #Coding #100DaysOfCode"

"Day 23 of #30DaysOfDSAChallenge Tackled the "Is Subsequence" problem today! 🎯 Ensured that one string could be formed by deleting some characters in another without changing their relative order. #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 23 of #30DaysOfDSAChallenge Tackled the "Is Subsequence" problem today! 🎯 Ensured that one string could be formed by deleting some characters in another without changing their relative order. #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

"Day 15 of #30DaysOfDSAChallenge Today's task: Merging two sorted arrays directly into nums1. Learning to optimize space while keeping the array sorted! #Java #LeetCode #DSA #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 15 of #30DaysOfDSAChallenge Today's task: Merging two sorted arrays directly into nums1. Learning to optimize space while keeping the array sorted! #Java #LeetCode #DSA #CodingLife #30DaysOfCode"

"Day 19 of #30DaysOfDSAChallenge Solved the "Valid Parentheses" problem! 🧑‍💻 Ensured that all brackets in the string are correctly matched and nested. It’s all about getting the order and pairing just right! #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 19 of #30DaysOfDSAChallenge Solved the "Valid Parentheses" problem! 🧑‍💻 Ensured that all brackets in the string are correctly matched and nested. It’s all about getting the order and pairing just right! #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

"Day 13 of #30DaysOfDSAChallenge Today’s problem: "Add Two Numbers." Worked with linked lists where digits are in reverse order. Successfully added the numbers and returned the sum as a new linked list! #Java #DSA #Programming #LeetCode #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 13 of #30DaysOfDSAChallenge Today’s problem: "Add Two Numbers." Worked with linked lists where digits are in reverse order. Successfully added the numbers and returned the sum as a new linked list! 
#Java #DSA #Programming #LeetCode #30DaysOfCode"

#Day11of #30daysofDSAChallenge 💡 Topic: Arrays and Hashing Question: LongestCommonPrefix

KalyanReddy800's tweet image. #Day11of #30daysofDSAChallenge 💡
Topic: Arrays and Hashing   
Question: LongestCommonPrefix

#Day6of #30daysofDSAChallenge 💡 Topic: Arrays and Hashing Question: ProductExceptSelf

KalyanReddy800's tweet image. #Day6of #30daysofDSAChallenge 💡 
 Topic: Arrays and Hashing       
Question: ProductExceptSelf

"Day 30 of #30DaysOfDSAChallenge Solved "Maximum Length of Pair Chain" today! Used a greedy approach with sorting to find the longest chain of pairs—efficient and satisfying! 🚀 #DSA #Java #LeetCode #GreedyAlgorithm #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 30 of #30DaysOfDSAChallenge Solved "Maximum Length of Pair Chain" today!  Used a greedy approach with sorting to find the longest chain of pairs—efficient and satisfying! 🚀 #DSA #Java #LeetCode #GreedyAlgorithm #100DaysOfCode"

"Day 28 of #30DaysOfDSAChallenge Worked on "Swap Nodes in Pairs" today. Successfully swapped adjacent nodes while keeping their values intact—another great linked list problem solved! 🎯#Java #DSA #LeetCode #LinkedList #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 28 of #30DaysOfDSAChallenge Worked on "Swap Nodes in Pairs" today. Successfully swapped adjacent nodes while keeping their values intact—another great linked list problem solved! 🎯#Java #DSA #LeetCode #LinkedList #30DaysOfCode"

"Day 27 of #30DaysOfDSAChallenge Solved "Delete the Middle Node of a Linked List" today! 🚀 Had to remove the middle node of a linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 27 of #30DaysOfDSAChallenge Solved "Delete the Middle Node of a Linked List" today! 🚀 Had to remove the middle node of a linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

"Day 26 of #30DaysOfDSAChallenge Today’s challenge: Implementing a queue using stacks! Built a queue with FIFO behavior using only two stacks. It’s always fun to see how data structures can be adapted! #DSA #Java #LeetCode #Queue #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 26 of #30DaysOfDSAChallenge Today’s challenge: Implementing a queue using stacks! Built a queue with FIFO behavior using only two stacks. It’s always fun to see how data structures can be adapted! #DSA #Java #LeetCode #Queue #100DaysOfCode"

"Day 25 of #30DaysOfDSAChallenge Solved the "Largest Rectangle in Histogram" problem! Tackled finding the largest rectangular area in a histogram—definitely a hard one, but really rewarding! #DSA #Java #LeetCode #Coding #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 25 of #30DaysOfDSAChallenge Solved the "Largest Rectangle in Histogram" problem! Tackled finding the largest rectangular area in a histogram—definitely a hard one, but really rewarding! #DSA #Java #LeetCode #Coding #100DaysOfCode"

"Day 24 of #30DaysOfDSAChallenge Solved the "Set Matrix Zeroes" problem today! 🌟 Had to set entire rows and columns to zero when an element is zero, all in place! #DSA #Java #LeetCode #Coding #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 24 of #30DaysOfDSAChallenge Solved the "Set Matrix Zeroes" problem today! 🌟 Had to set entire rows and columns to zero when an element is zero, all in place! #DSA #Java #LeetCode #Coding #100DaysOfCode"

"Day 23 of #30DaysOfDSAChallenge Tackled the "Is Subsequence" problem today! 🎯 Ensured that one string could be formed by deleting some characters in another without changing their relative order. #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 23 of #30DaysOfDSAChallenge Tackled the "Is Subsequence" problem today! 🎯 Ensured that one string could be formed by deleting some characters in another without changing their relative order. #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

"Day 22 of #30DaysOfDSAChallenge Challenge of the day: Finding the length of the last word in a string. This one was simple yet reminded me of the importance of handling spaces carefully! #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 22 of #30DaysOfDSAChallenge Challenge of the day: Finding the length of the last word in a string. This one was simple yet reminded me of the importance of handling spaces carefully! #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

"Day 21 of #30DaysOfDSAChallenge Today's challenge: Reversing a portion of a linked list between two positions! Managed to flip nodes between left and right in a singly linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 21 of #30DaysOfDSAChallenge Today's challenge: Reversing a portion of a linked list between two positions!  Managed to flip nodes between left and right in a singly linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

"Day 20 of #30DaysOfDSAChallenge Tackled the "Majority Element" problem today! 🧩 Found the element that appears more than half the time in the array #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 20 of #30DaysOfDSAChallenge Tackled the "Majority Element" problem today! 🧩 Found the element that appears more than half the time in the array #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

"Day 19 of #30DaysOfDSAChallenge Solved the "Valid Parentheses" problem! 🧑‍💻 Ensured that all brackets in the string are correctly matched and nested. It’s all about getting the order and pairing just right! #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 19 of #30DaysOfDSAChallenge Solved the "Valid Parentheses" problem! 🧑‍💻 Ensured that all brackets in the string are correctly matched and nested. It’s all about getting the order and pairing just right! #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

"Day 18 of #30DaysOfDSAChallenge Solved the "Minimum Jumps to Reach the End" problem today! 🧩 Strategized to find the least number of jumps needed to traverse the array #Java #DSA #LeetCode #CdingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 18 of #30DaysOfDSAChallenge Solved the "Minimum Jumps to Reach the End" problem today! 🧩 Strategized to find the least number of jumps needed to traverse the array #Java #DSA #LeetCode #CdingLife #30DaysOfCode"

"Day 17 of #30DaysOfDSAChallenge Today’s problem: "Jump Game." Had to determine if I could reach the last index of an array based on the jump lengths. Managed to make it to the end—both in the game and the challenge! #DSA #Java #LeetCode #Coding #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 17 of #30DaysOfDSAChallenge Today’s problem: "Jump Game."  Had to determine if I could reach the last index of an array based on the jump lengths. Managed to make it to the end—both in the game and the challenge! #DSA #Java #LeetCode #Coding #100DaysOfCode"

"Day 15 of #30DaysOfDSAChallenge Today's task: Merging two sorted arrays directly into nums1. Learning to optimize space while keeping the array sorted! #Java #LeetCode #DSA #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 15 of #30DaysOfDSAChallenge Today's task: Merging two sorted arrays directly into nums1. Learning to optimize space while keeping the array sorted! #Java #LeetCode #DSA #CodingLife #30DaysOfCode"

"Day 14 of #30DaysOfDSAChallenge Today’s challenge: "Remove Duplicates from Sorted Array." Implemented an in-place solution in Java to ensure each element appears at most twice. #Java #DSA #CodingChallenge #100DaysOfCode "

Gauri_suthar_'s tweet image. "Day 14 of #30DaysOfDSAChallenge Today’s challenge: "Remove Duplicates from Sorted Array." Implemented an in-place solution in Java to ensure each element appears at most twice. #Java #DSA #CodingChallenge #100DaysOfCode "

"Day 13 of #30DaysOfDSAChallenge Today’s problem: "Add Two Numbers." Worked with linked lists where digits are in reverse order. Successfully added the numbers and returned the sum as a new linked list! #Java #DSA #Programming #LeetCode #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 13 of #30DaysOfDSAChallenge Today’s problem: "Add Two Numbers." Worked with linked lists where digits are in reverse order. Successfully added the numbers and returned the sum as a new linked list! 
#Java #DSA #Programming #LeetCode #30DaysOfCode"

"Day 12 of #30DaysOfDSAChallenge: Tackled the "Remove Nth Node from End of List" problem! Used a two-pointer method to efficiently find and remove the node, including handling the head removal case. Simple yet effective! #100DaysOfCode #Java #DSA #CodingJourney #leetcode"

Gauri_suthar_'s tweet image. "Day 12 of #30DaysOfDSAChallenge: Tackled the "Remove Nth Node from End of List" problem! Used a two-pointer method to efficiently find and remove the node, including handling the head removal case. Simple yet effective! #100DaysOfCode #Java #DSA #CodingJourney #leetcode"

"Day 11 of #30DaysOfDSAChallenge complete! Solved the "Move Zeroes" problem today.Task: Shift all 0s to the end while keeping the order of other elements intact. Used the two-pointer approach for an efficient in-place solution! #Coding #LeetCode #100DaysOfCode #DSAChallenge

Gauri_suthar_'s tweet image. "Day 11 of #30DaysOfDSAChallenge complete! Solved the "Move Zeroes" problem today.Task: Shift all 0s to the end while keeping the order of other elements intact. Used the two-pointer approach for an efficient in-place solution! #Coding  #LeetCode #100DaysOfCode #DSAChallenge

"Day 10 of my #30DaysOfDSAChallenge! Today, I tackled array rotations. Implemented an efficient in-place algorithm to rotate an array by k positions using the reverse technique. This approach minimizes extra space and optimizes performance! #DSA #CodingChallenge #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 10 of my #30DaysOfDSAChallenge! Today, I tackled array rotations.  Implemented an efficient in-place algorithm to rotate an array by k positions using the reverse technique. This approach minimizes extra space and optimizes performance! #DSA #CodingChallenge #100DaysOfCode"

"Day 9 of my #30DaysOfDSAChallenge is complete! Today, I tackled the classic palindrome problem with a twist – efficiently skipping non-alphanumeric characters and using the two-pointer technique for optimal performance. #DSA #CodingChallenge #Java #CodingJourney #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 9 of my #30DaysOfDSAChallenge is complete! Today, I tackled the classic palindrome problem with a twist – efficiently skipping non-alphanumeric characters and using the two-pointer technique for optimal performance. #DSA #CodingChallenge #Java #CodingJourney #100DaysOfCode"

No results for "#30daysofdsachallenge"

"Day 9 of my #30DaysOfDSAChallenge is complete! Today, I tackled the classic palindrome problem with a twist – efficiently skipping non-alphanumeric characters and using the two-pointer technique for optimal performance. #DSA #CodingChallenge #Java #CodingJourney #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 9 of my #30DaysOfDSAChallenge is complete! Today, I tackled the classic palindrome problem with a twist – efficiently skipping non-alphanumeric characters and using the two-pointer technique for optimal performance. #DSA #CodingChallenge #Java #CodingJourney #100DaysOfCode"

"Day 10 of my #30DaysOfDSAChallenge! Today, I tackled array rotations. Implemented an efficient in-place algorithm to rotate an array by k positions using the reverse technique. This approach minimizes extra space and optimizes performance! #DSA #CodingChallenge #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 10 of my #30DaysOfDSAChallenge! Today, I tackled array rotations.  Implemented an efficient in-place algorithm to rotate an array by k positions using the reverse technique. This approach minimizes extra space and optimizes performance! #DSA #CodingChallenge #100DaysOfCode"

"Day 27 of #30DaysOfDSAChallenge Solved "Delete the Middle Node of a Linked List" today! 🚀 Had to remove the middle node of a linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 27 of #30DaysOfDSAChallenge Solved "Delete the Middle Node of a Linked List" today! 🚀 Had to remove the middle node of a linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

"Day 24 of #30DaysOfDSAChallenge Solved the "Set Matrix Zeroes" problem today! 🌟 Had to set entire rows and columns to zero when an element is zero, all in place! #DSA #Java #LeetCode #Coding #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 24 of #30DaysOfDSAChallenge Solved the "Set Matrix Zeroes" problem today! 🌟 Had to set entire rows and columns to zero when an element is zero, all in place! #DSA #Java #LeetCode #Coding #100DaysOfCode"

"Day 18 of #30DaysOfDSAChallenge Solved the "Minimum Jumps to Reach the End" problem today! 🧩 Strategized to find the least number of jumps needed to traverse the array #Java #DSA #LeetCode #CdingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 18 of #30DaysOfDSAChallenge Solved the "Minimum Jumps to Reach the End" problem today! 🧩 Strategized to find the least number of jumps needed to traverse the array #Java #DSA #LeetCode #CdingLife #30DaysOfCode"

"Day 21 of #30DaysOfDSAChallenge Today's challenge: Reversing a portion of a linked list between two positions! Managed to flip nodes between left and right in a singly linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 21 of #30DaysOfDSAChallenge Today's challenge: Reversing a portion of a linked list between two positions!  Managed to flip nodes between left and right in a singly linked list #DSA #Java #LeetCode #LinkedList #100DaysOfCode"

"Day 22 of #30DaysOfDSAChallenge Challenge of the day: Finding the length of the last word in a string. This one was simple yet reminded me of the importance of handling spaces carefully! #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 22 of #30DaysOfDSAChallenge Challenge of the day: Finding the length of the last word in a string. This one was simple yet reminded me of the importance of handling spaces carefully! #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

"Day 20 of #30DaysOfDSAChallenge Tackled the "Majority Element" problem today! 🧩 Found the element that appears more than half the time in the array #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 20 of #30DaysOfDSAChallenge Tackled the "Majority Element" problem today! 🧩 Found the element that appears more than half the time in the array #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

"Day 14 of #30DaysOfDSAChallenge Today’s challenge: "Remove Duplicates from Sorted Array." Implemented an in-place solution in Java to ensure each element appears at most twice. #Java #DSA #CodingChallenge #100DaysOfCode "

Gauri_suthar_'s tweet image. "Day 14 of #30DaysOfDSAChallenge Today’s challenge: "Remove Duplicates from Sorted Array." Implemented an in-place solution in Java to ensure each element appears at most twice. #Java #DSA #CodingChallenge #100DaysOfCode "

Just started my #30daysofDSAchallenge. Day 1 was all about revision. Brushed up on some basics and syntax. Solved a few basic problems on #GeeksforGeeks, like decimal to binary. It was a tough day, but I’m learning. Looking forward to tomorrow! 📘 #codingbeginner #Day1

hetvik_'s tweet image. Just started my #30daysofDSAchallenge.
 
Day 1 was all about revision. Brushed up on some basics and syntax. Solved a few basic problems on #GeeksforGeeks, like decimal to binary. It was a tough day, but I’m learning. Looking forward to tomorrow! 📘 #codingbeginner #Day1
hetvik_'s tweet image. Just started my #30daysofDSAchallenge.
 
Day 1 was all about revision. Brushed up on some basics and syntax. Solved a few basic problems on #GeeksforGeeks, like decimal to binary. It was a tough day, but I’m learning. Looking forward to tomorrow! 📘 #codingbeginner #Day1

"Day 13 of #30DaysOfDSAChallenge Today’s problem: "Add Two Numbers." Worked with linked lists where digits are in reverse order. Successfully added the numbers and returned the sum as a new linked list! #Java #DSA #Programming #LeetCode #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 13 of #30DaysOfDSAChallenge Today’s problem: "Add Two Numbers." Worked with linked lists where digits are in reverse order. Successfully added the numbers and returned the sum as a new linked list! 
#Java #DSA #Programming #LeetCode #30DaysOfCode"

"Day 23 of #30DaysOfDSAChallenge Tackled the "Is Subsequence" problem today! 🎯 Ensured that one string could be formed by deleting some characters in another without changing their relative order. #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 23 of #30DaysOfDSAChallenge Tackled the "Is Subsequence" problem today! 🎯 Ensured that one string could be formed by deleting some characters in another without changing their relative order. #Java #DSA #LeetCode #StringManipulation #30DaysOfCode"

"Day 25 of #30DaysOfDSAChallenge Solved the "Largest Rectangle in Histogram" problem! Tackled finding the largest rectangular area in a histogram—definitely a hard one, but really rewarding! #DSA #Java #LeetCode #Coding #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 25 of #30DaysOfDSAChallenge Solved the "Largest Rectangle in Histogram" problem! Tackled finding the largest rectangular area in a histogram—definitely a hard one, but really rewarding! #DSA #Java #LeetCode #Coding #100DaysOfCode"

"Day 19 of #30DaysOfDSAChallenge Solved the "Valid Parentheses" problem! 🧑‍💻 Ensured that all brackets in the string are correctly matched and nested. It’s all about getting the order and pairing just right! #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 19 of #30DaysOfDSAChallenge Solved the "Valid Parentheses" problem! 🧑‍💻 Ensured that all brackets in the string are correctly matched and nested. It’s all about getting the order and pairing just right! #Java #DSA #LeetCode #CodingLife #30DaysOfCode"

"Day 15 of #30DaysOfDSAChallenge Today's task: Merging two sorted arrays directly into nums1. Learning to optimize space while keeping the array sorted! #Java #LeetCode #DSA #CodingLife #30DaysOfCode"

Gauri_suthar_'s tweet image. "Day 15 of #30DaysOfDSAChallenge Today's task: Merging two sorted arrays directly into nums1. Learning to optimize space while keeping the array sorted! #Java #LeetCode #DSA #CodingLife #30DaysOfCode"

"Day 12 of #30DaysOfDSAChallenge: Tackled the "Remove Nth Node from End of List" problem! Used a two-pointer method to efficiently find and remove the node, including handling the head removal case. Simple yet effective! #100DaysOfCode #Java #DSA #CodingJourney #leetcode"

Gauri_suthar_'s tweet image. "Day 12 of #30DaysOfDSAChallenge: Tackled the "Remove Nth Node from End of List" problem! Used a two-pointer method to efficiently find and remove the node, including handling the head removal case. Simple yet effective! #100DaysOfCode #Java #DSA #CodingJourney #leetcode"

"Day 11 of #30DaysOfDSAChallenge complete! Solved the "Move Zeroes" problem today.Task: Shift all 0s to the end while keeping the order of other elements intact. Used the two-pointer approach for an efficient in-place solution! #Coding #LeetCode #100DaysOfCode #DSAChallenge

Gauri_suthar_'s tweet image. "Day 11 of #30DaysOfDSAChallenge complete! Solved the "Move Zeroes" problem today.Task: Shift all 0s to the end while keeping the order of other elements intact. Used the two-pointer approach for an efficient in-place solution! #Coding  #LeetCode #100DaysOfCode #DSAChallenge

📚Days 2 and 3 of the #30DaysOfDSAChallenge 🔍Explored arrays algorithms and solved a few questions on LeetCode and GFG. From brute force to better, and finally reaching the most optimal approach I'm leveling up my problem-solving skills! Thanks to @striver_79 #ProblemSolving

ashutosh_678's tweet image. 📚Days 2 and 3 of the #30DaysOfDSAChallenge 

🔍Explored arrays algorithms and solved a few questions on LeetCode and GFG. From brute force to better, and finally reaching the most optimal approach

I'm leveling up my problem-solving skills! Thanks to @striver_79

#ProblemSolving
ashutosh_678's tweet image. 📚Days 2 and 3 of the #30DaysOfDSAChallenge 

🔍Explored arrays algorithms and solved a few questions on LeetCode and GFG. From brute force to better, and finally reaching the most optimal approach

I'm leveling up my problem-solving skills! Thanks to @striver_79

#ProblemSolving
ashutosh_678's tweet image. 📚Days 2 and 3 of the #30DaysOfDSAChallenge 

🔍Explored arrays algorithms and solved a few questions on LeetCode and GFG. From brute force to better, and finally reaching the most optimal approach

I'm leveling up my problem-solving skills! Thanks to @striver_79

#ProblemSolving

"Day 30 of #30DaysOfDSAChallenge Solved "Maximum Length of Pair Chain" today! Used a greedy approach with sorting to find the longest chain of pairs—efficient and satisfying! 🚀 #DSA #Java #LeetCode #GreedyAlgorithm #100DaysOfCode"

Gauri_suthar_'s tweet image. "Day 30 of #30DaysOfDSAChallenge Solved "Maximum Length of Pair Chain" today!  Used a greedy approach with sorting to find the longest chain of pairs—efficient and satisfying! 🚀 #DSA #Java #LeetCode #GreedyAlgorithm #100DaysOfCode"

Loading...

Something went wrong.


Something went wrong.


United States Trends