최근 포스트

[Programmers] 튜플

최대 1 분 소요

Python def solution(s): answer = [] temp = sorted([s.split(',') for s in s[2:-2].split('},{')], key = len) for i in temp: for j in i: ...

[LeetCode] 50. Pow(x, n)

최대 1 분 소요

Python class Solution: def myPow(self, x: float, n: int) -> float: return pow(x, n)