[TIL] CodeKata Day7
def more_than_half(nums):
dic = {} # 빈 딕셔너리 변수 선언
for i in nums:
if i not in dic: # i가 nums안에 없으면
dic[i] = 1 # dic의 키 i 에 value 1 저장
else: #i가 nums안에 있으면
dic[i] += 1 # dic의 키 i의 value에 1 더하기
dic_max = max(dic.keys() , key= dic.get) #dic에서 가장 큰 value값의 키값
return dic_max
Reference
この問題について([TIL] CodeKata Day7), 我々は、より多くの情報をここで見つけました https://velog.io/@choich_0807/TIL-CodeKata-Day7テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol