Im_pritam18 Profile Banner
Pritam Chauhan Profile
Pritam Chauhan

@Im_pritam18

Followers
528
Following
20K
Media
127
Statuses
1K

Techie @Fareye πŸ–₯️ | Sharing what I learn πŸ’» | Growing a little every day πŸ’ͺπŸ™‚

Ahmadabad City, India
Joined August 2022
Don't wanna be here? Send us removal request.
@Im_pritam18
Pritam Chauhan
2 months
DAY 1 / 90.βœ… Taking @akshaymarch7 3 months challenge.βœ… Completed 3 question from leetcode.βœ… Did one medium DSA question from @striver_79 sheet. @TheArnabSaha your post really motivates. #100DaysOfCode #javascript30 #datastructures #namasteDSA
Tweet media one
Tweet media two
Tweet media three
4
1
28
@Im_pritam18
Pritam Chauhan
3 days
Do you remember when you joined X? I do! #MyXAnniversary .3 years on X
Tweet media one
0
0
1
@Im_pritam18
Pritam Chauhan
4 days
Posting after 10 days.Will continue from day 46 of becoming a better computer science engineer and be better at Math 😁.#computerscience #mathematics.#DSA
Tweet media one
0
0
3
@Im_pritam18
Pritam Chauhan
15 days
βœ… Day 45 / 100 @akshaymarch7 challenge.βœ… Problem Solved: Two Sum (Optimized Approach).βœ… Approach: Hash Map for O(n) time.β€’ Stored visited numbers with their indices.β€’ Checked complement in constant time.Result: Efficient, clean, and scalable solution πŸ’‘.#DSA #100DaysOfCode
Tweet media one
0
0
4
@Im_pritam18
Pritam Chauhan
16 days
βœ… Day 44/100.βœ… Problem Solved: First Missing Positive.βœ… Approach: In-place swapping (index mapping).β€’ Swapped elements to their correct positions.β€’ Achieved O(n) time & O(1) extra space.β€’ Powerful example of in-place data organization πŸ’‘.#LeetCode #JavaScript #100DaysCode
Tweet media one
0
0
5
@Im_pritam18
Pritam Chauhan
16 days
βœ… Day 43 of #100DaysOfCode.βœ… Problem Solved: Best Time to Buy and Sell Stock II.βœ… Approach: Greedy Algorithm.β€’ Tracked daily price changes πŸ“ˆ.β€’ Added all profitable trades without overcomplicating.#LeetCode #JavaScript #ProblemSolving #100DaysOfCode
Tweet media one
0
0
7
@Im_pritam18
Pritam Chauhan
19 days
βœ… Day 42 / 100.βœ… Problem Solved: Summary Ranges.βœ… Approach: Iteration + Range Tracking.β€’ Identified consecutive number sequences πŸ”.β€’ Managed start and end pointers efficiently.β€’ Edge cases matterβ€”single elements need separate handling.#LeetCode #JavaScript #100DaysOfCode
Tweet media one
1
0
3
@Im_pritam18
Pritam Chauhan
19 days
I want to do leetcode .I want to learn AI.I want to learn cyber security .I want to learn full stack .I want to learn web3. --- I am finished ----.
0
0
2
@Im_pritam18
Pritam Chauhan
19 days
How to get remote job.
@jacques_web3
Jacques.web3
10 months
How I Went from Being β€œNobody” in India to Earning $100K+ as a Remote Engineer πŸš€ (Roadmap 🧡) . It all started in 2023 when I watched a video on remote work by @kirat_tw and it turned out to be the best decision of my career. Here's why. πŸ‘‡
Tweet media one
0
0
0
@Im_pritam18
Pritam Chauhan
20 days
βœ… Day 41 of #100DaysOfCode.βœ… Problem Solved: 3Sum.βœ… Approach: Sorting + Two Pointers.β€’ Sorting simplifies duplicate handling πŸ“.β€’ Careful duplicate skipping avoids redundant triplets.Another tricky problem down, one step closer to mastering arrays πŸš€.#LeetCode #JavaScript
Tweet media one
0
0
5
@Im_pritam18
Pritam Chauhan
21 days
Sometimes revisiting old problems makes you realize how much you’ve grown πŸš€.#LeetCode #JavaScript #CodingJourney #100DaysChallenge #MathInCode.
0
0
1
@Im_pritam18
Pritam Chauhan
21 days
βœ… Day 40 of #100DaysOfCode.βœ… Revisited: Pascal’s Triangle.βœ… Approach: Mathematical (nCr formula).βœ… Learning:.β€’ Refreshed understanding of combinations logic πŸ“š.β€’ Iterative calculation instead of precomputed factorials
Tweet media one
2
0
1
@Im_pritam18
Pritam Chauhan
22 days
βœ… Day 39 / 100 of @akshaymarch7's challenge.βœ… Problem Solved: Search in Rotated Sorted Array .β€’ Simple loop to check each element.β€’ Time complexity O(n) β€” works, but inefficient ⚑.β€’ Next step: Implement Binary Search for O(log n) speed .#LeetCode #JavaScript #100DaysOfCode
Tweet media one
1
0
5
@Im_pritam18
Pritam Chauhan
22 days
It's over for frontend dev ? πŸ₯²πŸ€“πŸ€.#gpt5 #gpt5api @akshaymarch7 @piyushgarg_dev @Hiteshdotcom @striver_79
Tweet media one
0
0
0
@Im_pritam18
Pritam Chauhan
22 days
βœ… Day 38 / 100 of @akshaymarch7 challenge.βœ… Problem Solved: Happy Number.βœ… Learning:.β€’ Used a while(1) infinite loop to keep checking sums.β€’ Detected cycles using an object as a set.β€’ Broke the loop once 1 was reached or cycle detected.#LeetCode #100DaysOfCode
0
0
4
@Im_pritam18
Pritam Chauhan
23 days
RT @Im_pritam18: βœ… Day 37 of #100DaysChallenge.βœ… Problem Solved: Remove Duplicates from Sorted.βœ… Approach: Used Set, nested loops, and in-p….
0
2
0
@Im_pritam18
Pritam Chauhan
24 days
RT @CompSciFact: Saw a study that said inexperienced and experienced programmers write about the same number of lines of code per day. The….
0
8
0
@Im_pritam18
Pritam Chauhan
24 days
βœ… Grind never stops.βœ… solved Find the repeating and missing number @takeUforward_ plus.🎯how's the TIME COMPLEXITY @takeUforward_
Tweet media one
0
0
2
@Im_pritam18
Pritam Chauhan
24 days
βœ… Day 37 of #100DaysChallenge.βœ… Problem Solved: Remove Duplicates from Sorted.βœ… Approach: Used Set, nested loops, and in-place updates.βœ… Learning:.β€’ The solution works but isn't optimal.β€’ Will work on time complexity.#LeetCode #CodeNewbie #JavaScript #BuildInPublic
Tweet media one
1
2
6
@Im_pritam18
Pritam Chauhan
24 days
βœ… Day 36 / 100.βœ… Solved β€œFind Missing and Repeated Values” 🧩.βœ… Implemented using frequency array approach.βœ… Tracked counts with .fill(0) and looped over the 2D grid.How would you optimize this without extra space?.#LeetCode #JavaScript #ProblemSolving #BuildInPublic
Tweet media one
2
0
8
@Im_pritam18
Pritam Chauhan
25 days
βœ… Day 35 of #100DaysOfCode.βœ… Solved β€œDuplicate Zeros” on @LeetCode.βœ… Used extra space with two-pointer approach. What’s your take on in-place array manipulation?.#LeetCode #JavaScript #CodingChallenge #WebDev #BuildInPublic
Tweet media one
5
0
17