최근 포스트

[LeetCode] 412. Fizz Buzz

최대 1 분 소요

Python class Solution: def fizzBuzz(self, n: int) -> List[str]: answer = [] for i in range(1, n + 1): if i % 3 == 0 and i ...

[LeetCode] 69. Sqrt(x)

최대 1 분 소요

Python class Solution: def mySqrt(self, x: int) -> int: return int(math.sqrt(x))