https://programmers.co.kr/learn/courses/30/lessons/70129
주어진 조건을 그대로 구현하면 된다.
def solution(s):
deleted_zero, counting = 0,0
while s !='1':
deleted_zero += s.count('0')
counting+=1
s = bin(s.count('1'))[2:]
return [counting,deleted_zero]
'Programming' 카테고리의 다른 글
[프로그래머스] 빛의 경로 사이클 (Python) (4) | 2021.11.07 |
---|---|
[프로그래머스] 땅따먹기 (Python) (0) | 2021.11.07 |
댓글