if not, continue

0

알고리즘

목록 보기
3/14
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로 넘어가는 것이였다.

profile
백엔드를 공부하고 있습니다.

0개의 댓글