1
2
3
4
|
import numpy
class Solution:
def convertToBase7(self, num: int) -> str:
return(numpy.base_repr(num, base=7))
|
cs |
numpy 라이브러리에 base 변환해주는 함수가 있네요..!
반응형
'python-algorithm' 카테고리의 다른 글
백준 25024 시간과 날짜 (0) | 2022.04.21 |
---|---|
leetcode 345. Reverse Vowels of a String (0) | 2022.04.21 |
leetcode 1752. Check if Array Is Sorted and Rotated (0) | 2022.04.18 |
leetcode 1796. Second Largest Digit in a String (0) | 2022.04.18 |
leetcode 1154. Day of the Year (0) | 2022.04.18 |
댓글