728x90
이 글은 백준 알고리즘 단계별로 문제풀기 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
'Development > Algorithm' 카테고리의 다른 글
[Algorithm] 백준 1152번 문제풀이 (0) | 2021.03.26 |
---|---|
[Algorithm] 백준 1157번 문제풀이 (0) | 2021.03.24 |
[Algorithm] 백준 2675번 문제풀이 (0) | 2021.03.24 |
[Algorithm] 백준 10809번 문제 풀이 (0) | 2021.03.23 |
[Algorithm] 백준 11720번 문제 풀이 (0) | 2021.03.22 |