[BaekJoon] 10817번: 세 수 (Python)
implementation, sorting
Tags: implementation, python, sorting
Categories: Baekjoon
- Reference
- 너무 기초..
Solution
integers = list(map(int, input().split()))
print(sorted(integers)[1])
implementation, sorting
Tags: implementation, python, sorting
Categories: Baekjoon
integers = list(map(int, input().split()))
print(sorted(integers)[1])
Dev Battery
Search across posts, tags, and pages. Top matches are shown first.
Leave a comment