Aspiring SDE | Full Stack Developer(MERN) | LeetCode Knight! | Top 1500 @google Big Code 2026
Learning in public π¨βπ»
Building something that creates impact.
<NumeroVibe Destiny/>
Type your name, DOB, and what youβre stuck on β it replies with a personalized numerology report in seconds.
Stack: React + TypeScript + Vite + Tailwind + GPT + Pabbly
Trying to build tools people actually enjoy using.
π https://t.co/FFzlq8kG7y
#AI#LLM
Did 3 job simulations from Deloitte this week
> Data Analytics - data analysis + forensic tech stuff
> Technology - coding and dev tasks
> Cyber - cyber security basics
via forage. pretty cool way to get a taste of real work in these fields
#deloitte#forage#placements#learning
Completed 365 days streak on leetcode.
Started not even knowing syntax properly, now solving hard problems with confidence.
consistency > motivation, you just gotta show up daily.
#leetcode#dsa#100DaysOfCode
Day 341 of my LeetCode Daily Challenge streak π₯π»
Today's pick: 3345. Smallest Divisible Digit Product I (Easy) β find the
Simple brute force: check each number's digit product starting from n
until we find a hit β
200 days streak on LeetCode π₯
just been showing up daily, some days more some days less, but kept it going. slow progress but progress
#leetcode#dsa#consistency
Another small milestone
Just earned the LeetCode 100 Days Badge 2026 for solving problems consistently this year.
Trying to show up every day, learn something new, and get a little better at problem solving. The journey continues
#LeetCode#DSA#CodingJourney#ProblemSolving
Sharing a small update
Participated in Google Big Code 2026
β Top 15k (Qualifier)
β Top 1.5k (Round 1)
β Reached Round 2
Didnβt make finals this time, but learned a lot about problem-solving and handling pressure.
Will come back stronger.
#Google#GoogleBigCode#DSA#CP
Day 185 β
Solved Find Kth Bit in Nth Binary String using recursion.
Used the pattern: Sβ = Sβββ + "1" +
reverse(invert(Sβββ)).Checked middle index, recursed on left half, or mirrored and inverted for right half.
#LeetCode#DSA#Java#Recursion#ProblemSolving
Day 182 β
Solved Concatenation of Consecutive Binary Numbers.
Used bit shifting to append each numberβs binary form and applied modulo at every step to avoid overflow.
Also received DCC February 2026 badge π
#LeetCode#Java#DSA#Consistency
Day 180 β
Solved Number of Steps to Reduce a Number in Binary Representation to One.
Instead of converting the binary string to a big integer, I simulated the process from right to left.Logic I used:
180-day streak going strong πͺ
#LeetCode#DSA#Java#BitManipulation
Got my 50 Days Badge 2026 on LeetCode π―
50+ days of consistently solving problems this year.
From struggling with basic patterns to now comfortably applying binary search, sliding window, DFS, and DP where needed.
#LeetCode#DSA#ProblemSolving#Java#CodingJourney
Balanced Binary Tree β
(Day 162)Solved todayβs LeetCode using DFS.
Calculated height of left and right subtrees and returned -1 early if the difference > 1.
This bottom-up approach avoids repeated traversal and keeps it O(n).
#LeetCode#DSA#Java#BinaryTree#CodingJourney
Solved todayβs LeetCode Daily β (Minimum Removals to Balance Array)
Approach:
Sorted the array first, then used two pointers to find the longest valid window where
max β€ min Γ k.
O(n log n) | Java π»
#LeetCode#DSA#Java#SlidingWindow#CodingJourney