Welcome to My Blog
This is my first blog post. I’m excited to start sharing my thoughts and experiences with you! (updated)
What to Expect
I plan to post regularly, sharing insights, tips, and stories. Feel free to leave comments and engage with the content.
Here’s a simple code snippet to brighten your day:
def is_prime(number: int) -> bool:
# Time complexity: O(sqrt(n))
if number == 1:
return False
i = 2
while i*i <= number:
if n % i == 0:
return False
i += 1
return True
Stay tuned for more posts coming soon!