파이썬 알고리즘-105 (프로그래머스) 이진 변환 반복하기
코드
def solution(s):
answer = []
zero_cnt=0
cnt=0
while len(s)>1:
zero_cnt+=s.count('0')
cnt+=1
s=s.replace('0','')
length=len(s)
s=bin(length)[2:]
answer=[cnt,zero_cnt]
return answer
다른 사람의 풀이
def solution(s):
a, b = 0, 0
while s != '1':
a += 1
num = s.count('1')
b += len(s) - num
s = bin(num)[2:]
return [a, b]
Author And Source
이 문제에 관하여(파이썬 알고리즘-105 (프로그래머스) 이진 변환 반복하기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jiffydev/파이썬-알고리즘-105-프로그래머스-이진-변환-반복하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)