Abhishe09777624 Profile Banner
Abhishek Maurya Profile
Abhishek Maurya

@Abhishe09777624

Followers
72
Following
226
Media
31
Statuses
68

Engineering student

Surat
Joined January 2021
Don't wanna be here? Send us removal request.
@Abhishe09777624
Abhishek Maurya
25 days
✅Solved Rotten Oranges 🍊 (Leetcode).👨‍💻 Approach:. ♦️Use BFS from all initially rotten oranges.♦️Track time with levels in BFS.♦️Fresh oranges rot if adjacent to rotten ones (up, down, left, right).♦️Return time taken if all oranges rot, else -1. #LeetCode #DSA #BFS
Tweet media one
1
1
14
@Abhishe09777624
Abhishek Maurya
25 days
📗One to Many relationship in DBMS. #DBMS
Tweet media one
0
0
7
@grok
Grok
8 days
Join millions who have switched to Grok.
221
461
3K
@Abhishe09777624
Abhishek Maurya
26 days
✅Solved Insert Interval on LeetCode .#LeetCode #DSA #100DaysOfCode #Blind75 #Java
Tweet media one
2
0
20
@Abhishe09777624
Abhishek Maurya
26 days
✅ Leetcode: Minimum Bit Flips to Convert Number.💡 Approach:.Use XOR to find differing bits and count the 1s. 🧠 XOR highlights bit positions that differ (1s), and __builtin_popcount counts them. Quick and optimal! ⚡.#Leetcode #BitManipulation #100DaysOfCode
Tweet media one
0
0
10
@Abhishe09777624
Abhishek Maurya
27 days
Hey @X alogorithm👋.I’m looking to #CONNECT with folks interested in: .🧑‍💻 JavaScript .🔯React.🌐 Full Stack Dev .🎨 Frontend .🚀 Backend . 🧠DSA.💻 Leetcode.✅ Software Development .☕️ Java .Let’s grow, share, and #LearnInPublic together!. #letsconnect.
18
0
26
@Abhishe09777624
Abhishek Maurya
27 days
📗 Studying Keys in DBMS today !. #DBMS #Learning
Tweet media one
0
0
6
@Abhishe09777624
Abhishek Maurya
28 days
✅ Solved Merge Intervals from LeetCode today!.🧠 Approach:.Sort intervals based on start time. Initialize result with the first interval. For each interval:.If it overlaps with the last one in result, merge them. Else, add it to result as is. Efficient & clean 🚀🚀.#LeetCode
Tweet media one
1
0
8
@Abhishe09777624
Abhishek Maurya
28 days
🚀 Just hit a 50-day streak on LeetCode!.Consistency > Motivation 🔁.Every day, one step closer to mastering DSA and cracking those tech interviews. Next stop: 100 days 🔥.#LeetCode #100DaysOfCode #DSA #CodingStreak #TechTwitter
Tweet media one
7
0
22
@Abhishe09777624
Abhishek Maurya
28 days
Back again to grind DSA after Fever🚀🚀.
0
0
2
@Abhishe09777624
Abhishek Maurya
1 month
✅ Solved "Word Break" (LeetCode - Blind 75). 🧠Approach: Trie + Memoization (HashMap).Built a Trie from the word dictionary for fast prefix lookup. Used DFS + Memoization to avoid recomputation.⚡ Faster than standard DP in some cases due to pruning redundant paths. #LeetCode
Tweet media one
0
0
9
@Abhishe09777624
Abhishek Maurya
1 month
Which course are you currently pursuing and what year are you in?👇 Let’s connect!.
1
0
3
@Abhishe09777624
Abhishek Maurya
1 month
Let's connect. .
@Abhishe09777624
Abhishek Maurya
1 month
Hey @X alogorithm👋.I’m looking to #CONNECT with folks interested in: .🧑‍💻 JavaScript .🔯React.🌐 Full Stack Dev .🎨 Frontend .🚀 Backend . 🧠DSA.💻 Leetcode.✅ Software Development .☕️ Java .Let’s grow, share, and #LearnInPublic together!. #letsconnect.
0
0
2
@Abhishe09777624
Abhishek Maurya
1 month
Let's watch #SpecialOps2 .#jiohotstar
Tweet media one
0
0
3
@Abhishe09777624
Abhishek Maurya
1 month
🚀 Today I solved 2 questions from #Blind75 on LeetCode .✅ Longest Palindromic Substring.✅ Container With Most Water.🧠 Approach:.📌 Palindromic Substring: Expand Around Center (O(n²)).📌 Container With Most Water: Two Pointer Technique (O(n)).Grinding daily !. #LeetCode #DSA
Tweet media one
Tweet media two
6
0
34
@Abhishe09777624
Abhishek Maurya
1 month
Hey @X alogorithm👋.I’m looking to #CONNECT with folks interested in: .🧑‍💻 JavaScript .🔯React.🌐 Full Stack Dev .🎨 Frontend .🚀 Backend . 🧠DSA.💻 Leetcode.✅ Software Development .☕️ Java .Let’s grow, share, and #LearnInPublic together!. #letsconnect.
3
0
7
@Abhishe09777624
Abhishek Maurya
1 month
🚀Daily DSA Grind 💻 .✅Longest Substring Without Repeating Characters. Approach: Sliding Window + HashMap to track characters and dynamically adjust window size. ✅Longest Palindromic Substring. Approach: Expand Around Center to check palindromes from every index. #LeetCode
Tweet media one
Tweet media two
0
0
3
@Abhishe09777624
Abhishek Maurya
1 month
🔁 DSA Daily Update – Blind 75. ✅ Two Sum (HashMap).✅ Longest Consecutive Sequence (HashSet).⚡ Time Complexity: O(n).💡 Concepts: Hashing, Optimization. #DSA #Blind75 #LeetCodeHindi #100DaysOfCode #Java #TechTwitter #LeetCode
Tweet media one
Tweet media two
0
1
6
@Abhishe09777624
Abhishek Maurya
2 months
✅Today, I tackled the Course Schedule problem on LeetCode.📌 Approach Used: Topological Sort using BFS (Kahn’s Algorithm).🚀 Every such problem reinforces my understanding of graph algorithms and boosts my DSA prep!.#LeetCode #DSA #BFS #CodingJourney #100DaysOfCode #Tech
Tweet media one
Tweet media two
0
0
2
@Abhishe09777624
Abhishek Maurya
3 months
🚀 Solved "Bottom View of Binary Tree" on @geeksforgeeks!.👨‍💻Another day Another Question!.🧠 Approach: BFS + Horizontal Distance Tracking.#geeksforgeeks #DSA #java #binarytree
Tweet media one
0
0
1
@Abhishe09777624
Abhishek Maurya
3 months
RT @geeksforgeeks: JAVA is now 30 years old. What is your best memory with it?.
0
16
0