Rob Stack – Telegram
Rob Stack
151 subscribers
119 photos
19 videos
2 files
75 links
Learning, coding, and growing! 🚀Rob Stack is where I document my progress in software engineering👨‍💻 and share helpful tips and tech knowledge📚 for fellow learners.
Download Telegram
Lets solve leetcode together🦾
Rob Stack
https://leetcode.com/problems/simplify-path/denoscription/
once i understood the problem well, coming up with a solution wasn't that hard

        stack = []
for dir_name in path.split('/'):
if dir_name == '..':
if stack: stack.pop()
elif dir_name == '' or dir_name == '.':
continue
else:
stack.append(dir_name)
return '/' + '/'.join(stack)
4
Rob Stack
https://leetcode.com/problems/maximum-subarray/denoscription/
This was my first accepted soln
        for num in nums[1:]:
cur_sum = max(num, cur_sum + num)
max_sum = max(max_sum, cur_sum)
return max_sum

but later i checked there is a better soln with less Runtime(9ms)

currSum = 0
maxSum = nums[0]
for num in nums:
if currSum < 0:
currSum = num
else:
currSum += num
if currSum > maxSum:
maxSum = currSum
return maxSum
1
Enough for today. I solved 10 problems all day, and if you want to solve more, check out my friend @bella_devs_squad. He's kind of a pro😎

@R0bstack
4😁1🤯1🤝1
Forwarded from Luna's pathway🤗 (Luna)
Daily Reminder 😌
Please open Telegram to view this post
VIEW IN TELEGRAM
🫡6🔥1
Sup everyone 🤓,I am redoing LeetCode problems I did in the previous days, and this is what happened:
🕯️some of the problems I struggled to solve yesterday or the day before I solved easily today.
🕯️Still, there are some problems I understand the concept and know how to solve, but I struggle with the implementation.
🕯️There are also some that make me wonder, did I really solve this one🤔😁?
Overall, I reinforced my learning, and I don't think I will miss these questions on interviews🤓. I highly recommend you guys to redo LeetCode problems you solved yesterday before starting to solve new ones.

@R0bstack
32🤝2
Happy Sunday, may solving errors be this easy 😌

@R0bstack
🤩5
Sanyi
Aaand it's out https://www.youtube.com/watch?v=sTkHcix2mlU @thesanyi
1⃣6️⃣
What were you doing
When you were sixteen
🫣😄

@R0bstack
😢5🤔1
Gov: You'll be a teacher next year.

Me: Sure, but make it IT and give me the lab key, or I'm ghosting 😎

#MEME@R0bstack
🤓5👌4
Forwarded from SeeFun.Dev (Sifen)
Ever notice how some websites don’t tell you whether your email or password is wrong when you try to log in? They just say "Invalid credentials" with no details.That’s actually a security feature.

It’s called User Enumeration Protection.
If a site tells you “email not found,” attackers can test millions of emails and instantly know who has an account. So instead, websites use a generic message to keep your info safe.

@sifendev
OOP.pdf
12.1 MB
Prepping for my OOP exam and suddenly remembering the PowerPoint I made last summer out of boredom🤓
🔥6👏1
Forwarded from AI Programming
⭐️ Gemini 3

Google releasing Gemini 3, most intelligent model that helps bring any idea to life.

Reasoning Capabilities

➡️ Gemini 3 excels in logical thinking and problem-solving.
➡️ The model gives insightful responses.
➡️ It can solve multi-step problems and mathematical challenges.
➡️ Gemini 3 accurately follows complex instructions.


Multimodal Understanding

➡️ The model synthesizes information from text, images, video, audio, and code.
➡️ It processes multimodal inputs.
➡️ Gemini 3 can create visual outputs like diagrams or graphs.
➡️ It analyzes video and audio to extract information.


Agentic Coding Abilities
➡️ Gemini 3 generates, understands, and debugs code.
➡️ "Vibe Coding" creates functional starting points.
➡️ The model uses external tools and APIs.
➡️ It can refine code and designs.

Learn more about Gemini:
🔗 https://deepmind.google/gemini
Please open Telegram to view this post
VIEW IN TELEGRAM
🔥3
😁2
I finally played football after almost three years, and guess what? I broke my leg. 😭
I had so much to get done today, but i've been stuck in bed all day long. I'm barely able to walk right now.
Maybe i really shouldn't have played, lesson learned in hard way.

@R0bstack
😁81