raheemdevs's profile picture. 23 • Software Engineer | 📩 raheemscorporatemail@gmail.com

Raheem😙

@raheemdevs

23 • Software Engineer | 📩 [email protected]

🏴‍☠️

raheemdevs's tweet image. 🏴‍☠️

Loving this trackpad 🐦‍🔥

raheemdevs's tweet image. Loving this trackpad 🐦‍🔥

Day 12/150 Problem: Longest Substring Without Repeating Characters Used a sliding window with two pointers to track the longest stretch of unique characters. Each char’s last seen index lets me skip duplicates in O(1) time. ⏱️ O(n) time | 💾 O(k) space #NeetCode #100DaysOfCode

raheemdevs's tweet image. Day 12/150
Problem: Longest Substring Without Repeating Characters

Used a sliding window with two pointers to track the longest stretch of unique characters.
Each char’s last seen index lets me skip duplicates in O(1) time.

⏱️ O(n) time | 💾 O(k) space

#NeetCode #100DaysOfCode
raheemdevs's tweet image. Day 12/150
Problem: Longest Substring Without Repeating Characters

Used a sliding window with two pointers to track the longest stretch of unique characters.
Each char’s last seen index lets me skip duplicates in O(1) time.

⏱️ O(n) time | 💾 O(k) space

#NeetCode #100DaysOfCode

11/150 NeetCode 🚀 Solved Container With Most Water Problem. Used the two-pointer technique expanding inward from both ends to find the max area efficiently. 📊 Time: O(n) 📦 Space: O(1) #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 11/150 NeetCode 🚀

Solved Container With Most Water Problem.
Used the two-pointer technique
expanding inward from both ends to find the max area efficiently.

📊 Time: O(n)
📦 Space: O(1)

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 11/150 NeetCode 🚀

Solved Container With Most Water Problem.
Used the two-pointer technique
expanding inward from both ends to find the max area efficiently.

📊 Time: O(n)
📦 Space: O(1)

#NeetCode150 #LeetCode #100DaysOfCode


Day 4 of my Web3 course retake 🚀 ✅Wrapped up with Truffle and moved on to Hardhat ⚡ ✅Installed & set up Hardhat with TypeScript ✅Deployed and verified smart contracts Excited about Hardhat’s flexibility and smooth developer experience! 🔥 #Web3 #Blockchain #100DaysOfCode

raheemdevs's tweet image. Day 4 of my Web3 course retake 🚀

✅Wrapped up with Truffle and moved on to Hardhat ⚡

✅Installed & set up Hardhat with TypeScript

✅Deployed and verified smart contracts

Excited about Hardhat’s flexibility and smooth developer experience! 🔥 #Web3 #Blockchain #100DaysOfCode

Day 3 of my Web3 course retake 🚀 ✅ Verified wallet on Etherscan ✅ Debugged smart contracts in Ganache ✅ Explored Truffle Debugger ✅ Learned about chain forking Each step makes the dev process feel more real-world 🔥 #Web3 #Blockchain #100DaysOfCode

raheemdevs's tweet image. Day 3 of my Web3 course retake 🚀

✅ Verified wallet on Etherscan
✅ Debugged smart contracts in Ganache
✅ Explored Truffle Debugger
✅ Learned about chain forking

Each step makes the dev process feel more real-world 🔥 #Web3 #Blockchain #100DaysOfCode


Raheem😙 reposted

@FalkonTrade looking very beautiful up there. Happy to see the logo I designed up on the @AptosLabs big stage. What till you see the great things we have🫵

Ucheorjins's tweet image. @FalkonTrade looking very beautiful up there.

Happy to see the logo I designed up on the @AptosLabs big stage. What till you see the great things we have🫵

Raheem😙 reposted

Day 1 of retaking my Web3 course! 🚀 -Installed Truffle -Compiled & deployed a smart contract -Explored Ganache for local blockchain setup -Used Truffle console to interact with contracts across networks Now diving into testing with Truffle 🔥 #Web3 #Blockchain #100DaysOfCode

raheemdevs's tweet image. Day 1 of retaking my Web3 course! 🚀

-Installed Truffle
-Compiled & deployed a smart contract
-Explored Ganache for local blockchain setup
-Used Truffle console to interact with contracts across networks

Now diving into testing with Truffle 🔥 #Web3 #Blockchain #100DaysOfCode

Back at it! 🚀 I’ve resumed my Web3 course on Udemy to sharpen and solidify my skills. Took a short break earlier to focus on school, but now it’s time to push forward again

raheemdevs's tweet image. Back at it! 🚀 I’ve resumed my Web3 course on Udemy to sharpen and solidify my skills. Took a short break earlier to focus on school, but now it’s time to push forward again
raheemdevs's tweet image. Back at it! 🚀 I’ve resumed my Web3 course on Udemy to sharpen and solidify my skills. Took a short break earlier to focus on school, but now it’s time to push forward again
raheemdevs's tweet image. Back at it! 🚀 I’ve resumed my Web3 course on Udemy to sharpen and solidify my skills. Took a short break earlier to focus on school, but now it’s time to push forward again


Raheem😙 reposted

gm aptos. gm decibel. gm falkon.


Raheem😙 reposted

8X upscaled

Julian_cano_'s tweet image. 8X upscaled

11/150 NeetCode 🚀 Solved Container With Most Water Problem. Used the two-pointer technique expanding inward from both ends to find the max area efficiently. 📊 Time: O(n) 📦 Space: O(1) #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 11/150 NeetCode 🚀

Solved Container With Most Water Problem.
Used the two-pointer technique
expanding inward from both ends to find the max area efficiently.

📊 Time: O(n)
📦 Space: O(1)

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 11/150 NeetCode 🚀

Solved Container With Most Water Problem.
Used the two-pointer technique
expanding inward from both ends to find the max area efficiently.

📊 Time: O(n)
📦 Space: O(1)

#NeetCode150 #LeetCode #100DaysOfCode

10/150 🚀 Solved Two Sum II (Input already Sorted). I utilized includes and indexOf, patched for duplicates. 📊 Time: O(n²) 📦 Space: O(1) It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀. #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 10/150 🚀

Solved Two Sum II (Input already Sorted).
I utilized includes and indexOf, patched for duplicates.

📊 Time: O(n²)
📦 Space: O(1)

It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀.

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 10/150 🚀

Solved Two Sum II (Input already Sorted).
I utilized includes and indexOf, patched for duplicates.

📊 Time: O(n²)
📦 Space: O(1)

It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀.

#NeetCode150 #LeetCode #100DaysOfCode


Raheem😙 reposted

Siddhartha doodle

Kohpale's tweet image. Siddhartha doodle

Raheem😙 reposted

Day 88 - Becoming an AI Agent Dev All done with my checks. Unto the next thing

Ucheorjins's tweet image. Day 88 - Becoming an AI Agent Dev 

All done with my checks. Unto the next thing

Day 87 - Becoming an AI Agent Dev Really turbulent day for me. Did carve out 30mins to go over my technical assistant project code and look at what might make it better

Ucheorjins's tweet image. Day 87 - Becoming an AI Agent Dev 

Really turbulent day for me. Did carve out 30mins to go over my technical assistant project code and look at what might make it better


Raheem😙 reposted

Day 60- Took a bicycle down memory lane and revisited plain JavaScript🚀🚀.

usmantijaniJS's tweet image. Day 60- Took a bicycle down memory lane and revisited plain JavaScript🚀🚀.
usmantijaniJS's tweet image. Day 60- Took a bicycle down memory lane and revisited plain JavaScript🚀🚀.
usmantijaniJS's tweet image. Day 60- Took a bicycle down memory lane and revisited plain JavaScript🚀🚀.

Raheem😙 reposted

There is a free and open source alternative to Netflix btw. It's called Stremio.

kanavtwt's tweet image. There is a free and open source alternative to Netflix btw.

It's called Stremio.

Raheem😙 reposted

I think about this a lot

wojakcodes's tweet image. I think about this a lot

Nice punchline

This JavaScript UI library seems difficult but I don't want to react😉



Raheem😙 reposted

Day 32 of my consistency challenge💪🏾 ➤ Completed a module on Linear Algebra ➤ Solves a LC medium ➤ Learnt some DSA concepts #Lockedin #buildinpublic

Taophyc_'s tweet image. Day 32 of my consistency challenge💪🏾   

➤  Completed a module on Linear Algebra
➤  Solves a LC medium
➤ Learnt some DSA concepts
#Lockedin #buildinpublic
Taophyc_'s tweet image. Day 32 of my consistency challenge💪🏾   

➤  Completed a module on Linear Algebra
➤  Solves a LC medium
➤ Learnt some DSA concepts
#Lockedin #buildinpublic

10/150 🚀 Solved Two Sum II (Input already Sorted). I utilized includes and indexOf, patched for duplicates. 📊 Time: O(n²) 📦 Space: O(1) It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀. #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 10/150 🚀

Solved Two Sum II (Input already Sorted).
I utilized includes and indexOf, patched for duplicates.

📊 Time: O(n²)
📦 Space: O(1)

It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀.

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 10/150 🚀

Solved Two Sum II (Input already Sorted).
I utilized includes and indexOf, patched for duplicates.

📊 Time: O(n²)
📦 Space: O(1)

It works ✅ but I know the sorted array begs for a cleaner two-pointer O(n) approach. Next step 👀.

#NeetCode150 #LeetCode #100DaysOfCode

9/150 🚀 Solved Valid Palindrome. I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse. ⏱ Time: O(n) 📦 Space: O(n) Regex made the filtering step feel smooth. #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 9/150 🚀

Solved Valid Palindrome.
I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse.

⏱ Time: O(n)
📦 Space: O(n)

Regex made the filtering step feel smooth. 
#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 9/150 🚀

Solved Valid Palindrome.
I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse.

⏱ Time: O(n)
📦 Space: O(n)

Regex made the filtering step feel smooth. 
#NeetCode150 #LeetCode #100DaysOfCode


9/150 🚀 Solved Valid Palindrome. I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse. ⏱ Time: O(n) 📦 Space: O(n) Regex made the filtering step feel smooth. #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 9/150 🚀

Solved Valid Palindrome.
I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse.

⏱ Time: O(n)
📦 Space: O(n)

Regex made the filtering step feel smooth. 
#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 9/150 🚀

Solved Valid Palindrome.
I leaned on my regex skills 🪄 to strip out non-alphanumerics, then compared the cleaned string with its reverse.

⏱ Time: O(n)
📦 Space: O(n)

Regex made the filtering step feel smooth. 
#NeetCode150 #LeetCode #100DaysOfCode

8/150 🚀 Solved Longest Consecutive Sequence. I used sorting → grouped consecutive numbers → tracked longest streak. 📊 O(n log n) time, O(n) space. Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾 #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 8/150 🚀

Solved Longest Consecutive Sequence.
I used sorting → grouped consecutive numbers → tracked longest streak.

📊 O(n log n) time, O(n) space.
Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 8/150 🚀

Solved Longest Consecutive Sequence.
I used sorting → grouped consecutive numbers → tracked longest streak.

📊 O(n log n) time, O(n) space.
Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾

#NeetCode150 #LeetCode #100DaysOfCode


8/150 🚀 Solved Longest Consecutive Sequence. I used sorting → grouped consecutive numbers → tracked longest streak. 📊 O(n log n) time, O(n) space. Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾 #NeetCode150 #LeetCode #100DaysOfCode

raheemdevs's tweet image. 8/150 🚀

Solved Longest Consecutive Sequence.
I used sorting → grouped consecutive numbers → tracked longest streak.

📊 O(n log n) time, O(n) space.
Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾

#NeetCode150 #LeetCode #100DaysOfCode
raheemdevs's tweet image. 8/150 🚀

Solved Longest Consecutive Sequence.
I used sorting → grouped consecutive numbers → tracked longest streak.

📊 O(n log n) time, O(n) space.
Not the O(n) optimal requirement, but I’m glad I came up with a working version 💪🏾

#NeetCode150 #LeetCode #100DaysOfCode

7/150 Tackled my first Sudoku Validator today. Rows, cols & sub-boxes gave me a hard time 😅 lots of trial & error before it finally clicked. 📊 Complexity: Time: O(1) (fixed 9×9) Space: O(1) Feels good seeing messy code turn into clean logic. Onward 💪 #NeetCode150 #LeetCode

raheemdevs's tweet image. 7/150

Tackled my first Sudoku Validator today. Rows, cols & sub-boxes gave me a hard time 😅 lots of trial & error before it finally clicked.

📊 Complexity:

Time: O(1) (fixed 9×9)
Space: O(1)

Feels good seeing messy code turn into clean logic. Onward 💪
#NeetCode150 #LeetCode
raheemdevs's tweet image. 7/150

Tackled my first Sudoku Validator today. Rows, cols & sub-boxes gave me a hard time 😅 lots of trial & error before it finally clicked.

📊 Complexity:

Time: O(1) (fixed 9×9)
Space: O(1)

Feels good seeing messy code turn into clean logic. Onward 💪
#NeetCode150 #LeetCode


Loading...

Something went wrong.


Something went wrong.