AI 부트캠프/알고리즘 코드카타

41, 42, 43, 44, 45

musukie 2024. 10. 31. 09:15

41 이상한 문자 만들기

def solution(s):
    answer = []
    splited = s.split(' ')
    for i in splited:
        split_word = ''
        for j, k in enumerate(i):
            if j % 2 == 0:
                split_word += k.upper()
            else:
                split_word += k.lower()
        answer.append(split_word)
    return ' '.join(answer)

42 삼총사

from itertools import combinations
def solution(number):
    answer = 0
    for comb in combinations(number, 3):
        if sum(comb) == 0:
            answer += 1
    return answer

43 크기가 작은 부분

def solution(t, p):
    answer = 0
    for i in range(len(t)-len(p)+1):
        sliced_t = t[i:i+len(p)]
        if p >= sliced_t:
            answer += 1
    return answer

44 최소 직사각형

def solution(sizes):
    max_w = 0
    max_h = 0
    for w, h in sizes:
        max_w = max(max_w, max(w, h))
        max_h = max(max_h, min(w, h))
    return max_w * max_h

45 시저 암호

# 너무 어렵다. 시저 암호와 아스키 코드(ASCII), Unicode , ord, chr에 대한 이해가 필요.
def solution(s, n):
    answer = ''
    for i in s:
        if i == ' ':
            # 공백은 그대로 유지
            answer += ' '
        elif i.islower():
            # 소문자인 경우
            new_i = chr((ord(i)-ord('a')+n) % 26 + ord('a'))
            answer += new_i
        elif i.isupper():
            # 대문자인 경우
            new_i = chr((ord(i) - ord('A') + n) % 26 + ord('A'))
            answer += new_i
    return answer

'AI 부트캠프 > 알고리즘 코드카타' 카테고리의 다른 글

39, 40  (0) 2024.10.30
36, 37, 38  (0) 2024.10.29
31, 32, 33, 34, 35  (0) 2024.10.24
26, 27, 28, 29, 30  (0) 2024.10.23
21, 22, 23, 24, 25  (0) 2024.10.22