[ํ๋ก๊ทธ๋๋จธ์ค-Lv1] ์์ฃผํ์ง ๋ชปํ ์ ์ / Python
๐ Problem Solving/Programmers
import sys
input = sys.stdin.readline
participant = list(map(str, input().split()))
completion = list(map(str, input().split()))
def solution(participant, completion):
participant.sort()
completion.sort()
for i in range(len(completion)):
if completion[i] != participant[i]:
return participant[i]
return participant[-1]
print(solution(participant, completion))
ํด์ค
์ฒ์์ ๋จ์ํ๊ฒ completion์๋ ์์ง๋ง participant์ ์๋ ์์๋ฅผ ์ถ๋ ฅํ๋๋ฐ ๋๋ช ์ด์ธ์ด๋ผ๋ ๊ฒฝ์ฐ๋ฅผ ์๊ฐํ์ง ๋ชปํด ํ๋ ธ๋ค.
๋ ๋ฆฌ์คํธ๋ฅผ ์ ๋ ฌ ํ, ๊ฐ์ ์ธ๋ฑ์ค์ ์๋ก ์ผ์นํ์ง ์๋ ๋ฐ์ดํฐ๋ฅผ ๋ฆฌํดํด์คฌ๋ค. completion์ ๋ชจ๋ ๋ฐ์ดํฐ๋ฅผ ํ์ํด๋ ์์ ๊ฒฝ์ฐ๋ participant์ ๋ง์ง๋ง ๊ฐ์ด ๋ต์ด๋ฏ๋ก ์ด ๊ฒฝ์ฐ์๋ participant์ ๋ง์ง๋ง ๊ฐ์ ๋ฆฌํดํ๋ค.
'๐ Problem Solving > Programmers' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ํ๋ก๊ทธ๋๋จธ์ค-Lv1] ๋ด์ / Python (0) | 2021.06.01 |
---|---|
[ํ๋ก๊ทธ๋๋จธ์ค-Lv1] ํฌ๋ ์ธ ์ธํ๋ฝ๊ธฐ / Python (0) | 2021.06.01 |
[ํ๋ก๊ทธ๋๋จธ์ค-Lv1] K๋ฒ์งธ์ / Python (0) | 2021.06.01 |
[ํ๋ก๊ทธ๋๋จธ์ค-Lv1] ๋ชจ์๊ณ ์ฌ / Python (0) | 2021.06.01 |
[ํ๋ก๊ทธ๋๋จธ์ค-Lv1] ์ฒด์ก๋ณต / Python (0) | 2021.06.01 |