Forwarded from Natnael Girma
Windows keeps slowing down my PC. Does anyone have suggestions for a better operating system? I mainly need it for software development, UI/UX design, and occasional video editing.
class Solution:
def isSymmetric(self, root: Optional[TreeNode]) -> bool:
def symm(na, nb):
if not na or not nb or na.val != nb.val:
return na is None and nb is None
return (
symm(na.left, nb.right) and
symm(na.right, nb.left)
)
return symm(root.left, root.right)
β€2π1
Forwarded from Pavel Durov (Paul Du Rove)
Media is too big
VIEW IN TELEGRAM
Telegram + Grok =
Please open Telegram to view this post
VIEW IN TELEGRAM
π3
I'm 23 and the 2nd most uneducated behavior I saw during this life is at University.
π2π1
https://drive.google.com/file/d/1Mo96dfTpghy4fStI-JtRIQgRphNuabfK/view?usp=drivesdk
I created this yesterday while applying for an internship. It felt so good to get back to using BLoC!
I created this yesterday while applying for an internship. It felt so good to get back to using BLoC!
π1π1
Yeab
https://drive.google.com/file/d/1Mo96dfTpghy4fStI-JtRIQgRphNuabfK/view?usp=drivesdk I created this yesterday while applying for an internship. It felt so good to get back to using BLoC!
I spent the whole night building this. The deadline was at 06:00AM. cart functionality was what was left. I enjoyed the architectural thinking (used MVVM with BLoC)
π₯1
Final exams and my defense kept me too busy for LeetCode last week. Now that Iβm free, Iβm getting back on track
π₯1π€1
Tech Nerd
If you have a channel, join this challenge:
Where do you see yourself 10 years from now? π₯
Where do you see yourself 10 years from now? π₯
CEO or founder of a well known company having a product loved by it's users.
π₯3