티스토리 뷰
programmers.co.kr/learn/courses/30/lessons/70129
def solution(s):
answer = [0, 0]
while(s != '1'):
answer[0] += 1
n = ''
for num in s:
if num == '1':
n += '1'
else: answer[1] += 1
s = bin(len(n))[2:]
return answer
'Algorithm > Programmers' 카테고리의 다른 글
[프로그래머스] 숫자 문자열과 영단어 - Python (0) | 2021.08.04 |
---|---|
[프로그래머스] 순위 검색 - Python (0) | 2021.07.30 |
[프로그래머스] 거스름돈 - Python (0) | 2021.04.15 |
[프로그래머스] 다음 큰 숫자 - Python (0) | 2021.04.11 |
[프로그래머스] 땅따먹기 - Python (0) | 2021.04.01 |