본문 바로가기

Development/Algorithm

[Algorithm] 백준 2908번 문제 풀이

728x90

 

Baekjoon Logo

 

이 글은 백준 알고리즘 단계별로 문제풀기 2908번 문제에 대한 풀이입니다. 자세한 내용은 코드 내의 주석을 참고해주시면 감사하겠습니다.
two_constant = input()

# Spliting two constants
constants = two_constant.split(' ')

# Making reversed constants list
reversed_constants = list()
for i in range(len(constants)):

    # Calculating length of the list
    string_length = len(constants[i])

    # Slicing
    sliced_string = constants[i][string_length::-1]
    reversed_constants.append(sliced_string)

# Printing max value of the reversed constants
print(max(reversed_constants))
728x90