def find_alphabet_occurrence_array(string):
alphabet_occurrence_array = [0] * 26
for char in string:
if not char.isalpha(): // 만약 알파벳이 아니라면
continue // 다음 index로 넘어가라
arr_index = ord(char) - ord("a")
alphabet_occurrence_array[arr_index] += 1
return alphabet_occurrence_array
↳ if not일 경우 continue 뒤의 코드를 수행하는 줄 알았는데,
if not이면 다음 index로 넘어가는 것이였다.