[Python] [Algorithm] 가장 많이 등장하는 알파벳 갯수 세기
2021. 6. 24. 13:43ㆍ🧑🏻💻/Python
word = "chanhhh"
def highFrequencyLetterCount(word):
map = {}
for alphabet in word:
print("map :",map)
if map.get(alphabet) == None:
map[alphabet] = 1
else:
map[alphabet] += 1
print(map)
max = -1
for key in map:
print("key :", key, "value :", map[key],
"max :", max)
if map[key] > max:
max = map[key]
print(max)
return max
highFrequencyLetterCount(word)
'🧑🏻💻 > Python' 카테고리의 다른 글
[Python] Dictionary sorted (0) | 2021.06.24 |
---|---|
[Python] list sort / sorted (0) | 2021.06.24 |
[Python] [Algorithm] 이진탐색 (0) | 2021.06.24 |
[Python] [Algorithm] 단순탐색 (0) | 2021.06.24 |
[Python] [Algorithm] 리스트에서 가장 큰 수 / 가장 작은 수 찾기 (0) | 2021.06.24 |