aryaniscoding's profile picture.

Aryan

@aryaniscoding

Just earned the Custom Objects: Quick Look badge on @Trailhead and you should too! trailhead.salesforce.com/content/learn/…


Just earned the Salesforce Platform Basics badge on @Trailhead and you should too! trailhead.salesforce.com/content/learn/…


Just earned the Campaign Basics badge on @Trailhead and you should too! trailhead.salesforce.com/content/learn/…


Just earned the Salesforce CRM badge on @Trailhead, and you should too! trailhead.salesforce.com/content/learn/…


Day 28 of #GFG160 🔁 Solved Spiral Matrix Traversal 🌀 Traversed 2D arrays layer by layer, clockwise. Clean logic with bounds: top, bottom, left, right ✅ #100DaysOfCode #Java #DSA #Matrix #CodingChallenge #GeeksForGeeks

aryaniscoding's tweet image. Day 28 of #GFG160 🔁
Solved Spiral Matrix Traversal 🌀
Traversed 2D arrays layer by layer, clockwise.
Clean logic with bounds: top, bottom, left, right ✅
#100DaysOfCode #Java #DSA #Matrix #CodingChallenge #GeeksForGeeks

Day 27 of #GFG160 🔥 Solved “Merge Without Extra Space” using the Gap Method 🚀 No extra space, fully optimized ✅ One step closer to DSA mastery! 💻 #100DaysOfCode #Java #DSA #CodingChallenge #GeeksForGeeks

aryaniscoding's tweet image. Day 27 of #GFG160 🔥
Solved “Merge Without Extra Space” using the Gap Method 🚀
No extra space, fully optimized ✅
One step closer to DSA mastery! 💻
#100DaysOfCode #Java #DSA #CodingChallenge #GeeksForGeeks

📚 Day 22 of #GFG160DaysChallenge 🔍 Problem: Find the H-Index ✅ Used counting array to compute result in linear time 📈 Time: O(N) | Space: O(N) 🧠 Logic: Count how many papers have at least i citations #DSA #HIndex #ResearchMetrics #GeeksForGeeks #Java #CodingChallenge

aryaniscoding's tweet image. 📚 Day 22 of #GFG160DaysChallenge
🔍 Problem: Find the H-Index 
✅ Used counting array to compute result in linear time
📈 Time: O(N) | Space: O(N)
🧠 Logic: Count how many papers have at least i citations
#DSA #HIndex #ResearchMetrics #GeeksForGeeks #Java #CodingChallenge

🔥 Day 21 of #GFG160DaysChallenge 🎯 Problem: Sort an array of 0s, 1s, and 2s without using in-built sort ⚡ Used Dutch National Flag Algorithm (one-pass, constant space!) 👊 Time: O(N) | Space: O(1) 📌 Efficient + Elegant! #DSA #Sorting #GeeksForGeeks #Java #DutchFlagAlgorithm

aryaniscoding's tweet image. 🔥 Day 21 of #GFG160DaysChallenge
🎯 Problem: Sort an array of 0s, 1s, and 2s without using in-built sort
⚡ Used Dutch National Flag Algorithm (one-pass, constant space!)
👊 Time: O(N) | Space: O(1)
📌 Efficient + Elegant!
#DSA #Sorting #GeeksForGeeks #Java #DutchFlagAlgorithm

🚀 Day 20 of #GFG160DaysChallenge 🔁 Problem: Check if two strings are rotations of each other 🔧 Approach: Concatenate + KMP Pattern Matching for O(N) efficiency ✅ Smart check with LPS array 💡 #GeeksForGeeks #DSA #Java #StringRotation #KMP #100DaysOfCode #CodingChallenge

aryaniscoding's tweet image. 🚀 Day 20 of #GFG160DaysChallenge
🔁 Problem: Check if two strings are rotations of each other
🔧 Approach: Concatenate + KMP Pattern Matching for O(N) efficiency
✅ Smart check with LPS array 💡
#GeeksForGeeks #DSA #Java #StringRotation #KMP #100DaysOfCode #CodingChallenge

🚀 Day 19 of #GFG160DaysChallenge 🔄 Problem: Minimum Characters to Add at Front to Make a String Palindrome 🔧 Approach: Reversed string + LPS (Longest Prefix Suffix) with KMP twist ✅ Efficient solution in O(N) time! #DSA #GeeksForGeeks #Palindrome #KMPAlgorithm #100DaysOfCode

aryaniscoding's tweet image. 🚀 Day 19 of #GFG160DaysChallenge
🔄 Problem: Minimum Characters to Add at Front to Make a String Palindrome
🔧 Approach: Reversed string + LPS (Longest Prefix Suffix) with KMP twist
✅ Efficient solution in O(N) time!
#DSA #GeeksForGeeks #Palindrome #KMPAlgorithm #100DaysOfCode

🚀 Day 18 of #GFG160DaysChallenge 🔍 Problem: Pattern Search using KMP Algorithm 🧩 Learned to build the LPS array for optimized searching ⚡ Time Complexity: O(N + M), no backtracking! #Java #DSA #GeeksForGeeks #KMP #100DaysOfCode #StringMatching

aryaniscoding's tweet image. 🚀 Day 18 of #GFG160DaysChallenge
🔍 Problem: Pattern Search using KMP Algorithm
🧩 Learned to build the LPS array for optimized searching
⚡ Time Complexity: O(N + M), no backtracking!
#Java #DSA #GeeksForGeeks #KMP #100DaysOfCode #StringMatching

✅ Day 16 of #GFG160DaysChallenge 🔍 Problem: First Non-Repeating Character 🧠 Used HashMap to track frequency ⏩ Returned first unique character in O(n) #Java #DSA #GeeksForGeeks #CodeDaily #100DaysOfCode

aryaniscoding's tweet image. ✅ Day 16 of #GFG160DaysChallenge
🔍 Problem: First Non-Repeating Character
🧠 Used HashMap to track frequency
⏩ Returned first unique character in O(n)
#Java #DSA #GeeksForGeeks #CodeDaily #100DaysOfCode

✅ Day 16 of #GFG160DaysChallenge 🧩 Problem: Anagram 🔁 Sorted + compared char arrays 🟢 Simple & efficient! #Java #CodingChallenge #GeeksForGeeks

aryaniscoding's tweet image. ✅ Day 16 of #GFG160DaysChallenge
🧩 Problem: Anagram
🔁 Sorted + compared char arrays
🟢 Simple & efficient!
#Java #CodingChallenge #GeeksForGeeks

🚀 Day 15 of #GFG160DaysChallenge 🔢 Problem: Add Binary Strings 💡 Approach: Simulate addition with carry & trim leading zeros ✅ Output matches expected! #Java #BinaryAddition #100DaysOfCode #GeeksForGeeks #CodeNewbie

aryaniscoding's tweet image. 🚀 Day 15 of #GFG160DaysChallenge
🔢 Problem: Add Binary Strings
💡 Approach: Simulate addition with carry & trim leading zeros
✅ Output matches expected!
#Java #BinaryAddition #100DaysOfCode #GeeksForGeeks #CodeNewbie

🚀 Day 14 of #GFG160DaysChallenge Problem: Implement Atoi 🔢 Approach: Manual parsing with overflow checks ✅ Handles whitespace, sign, invalid chars & overflow safely #Java #DSA #100DaysOfCode #GeeksForGeeks

aryaniscoding's tweet image. 🚀 Day 14 of #GFG160DaysChallenge
Problem: Implement Atoi 🔢
Approach: Manual parsing with overflow checks
✅ Handles whitespace, sign, invalid chars & overflow safely
#Java #DSA #100DaysOfCode #GeeksForGeeks

🚀 Day 13 of #GFG160DaysChallenge Problem: Smallest Positive Missing Number 🔍 Approach: Sort + Sequential Check ✅ Handles negatives & duplicates, tracks smallest missing > 0 #Java #DSA #100DaysOfCode #GeeksForGeeks

aryaniscoding's tweet image. 🚀 Day 13 of #GFG160DaysChallenge
Problem: Smallest Positive Missing Number 🔍
Approach: Sort + Sequential Check
✅ Handles negatives & duplicates, tracks smallest missing > 0
#Java #DSA #100DaysOfCode #GeeksForGeeks

🚀 Day 12 of #GFG160DaysChallenge Problem: Max Circular Subarray Sum 🔄 Approach: Kadane’s for both max & min subarrays + total sum ✅ Handles wrapping cases in circular arrays #Java #DSA #100DaysOfCode #GeeksForGeeks

aryaniscoding's tweet image. 🚀 Day 12 of #GFG160DaysChallenge
Problem: Max Circular Subarray Sum 🔄
Approach: Kadane’s for both max & min subarrays + total sum
✅ Handles wrapping cases in circular arrays
#Java #DSA #100DaysOfCode #GeeksForGeeks

🚀 Day 11 of #GFG160DaysChallenge Problem: Maximum Product Subarray ✖️➗ Approach: Two-pass traversal to track sign flips and zeros ✅ Handles negative chains and resets on 0 #Java #DSA #100DaysOfCode #GeeksForGeeks

aryaniscoding's tweet image. 🚀 Day 11 of #GFG160DaysChallenge
Problem: Maximum Product Subarray ✖️➗
Approach: Two-pass traversal to track sign flips and zeros
✅ Handles negative chains and resets on 0
#Java #DSA #100DaysOfCode #GeeksForGeeks

🚀 Day 10 of #GFG160DaysChallenge Problem: Kadane’s Algorithm ➕➖ Approach: Dynamic sliding window to track max subarray sum ✅ Handles negatives, resets sum on dip #Java #DSA #100DaysOfCode #GeeksForGeeks

aryaniscoding's tweet image. 🚀 Day 10 of #GFG160DaysChallenge
Problem: Kadane’s Algorithm ➕➖
Approach: Dynamic sliding window to track max subarray sum
✅ Handles negatives, resets sum on dip
#Java #DSA #100DaysOfCode #GeeksForGeeks

🚀 Day 9 of #GFG160DaysChallenge Problem: Minimize the Heights II 🏙️ Approach: Sort + Greedy update of max & min after +/- K ✅ Handles edge cases & avoids negatives #Java #DSA #100DaysOfCode #GeeksForGeeks

aryaniscoding's tweet image. 🚀 Day 9 of #GFG160DaysChallenge
Problem: Minimize the Heights II 🏙️
Approach: Sort + Greedy update of max & min after +/- K
✅ Handles edge cases & avoids negatives
#Java #DSA #100DaysOfCode #GeeksForGeeks

United States Trends

Loading...

Something went wrong.


Something went wrong.