diff --git "a/\353\260\260\354\203\201\354\233\205/.idea/vcs.xml" "b/\353\260\260\354\203\201\354\233\205/.idea/vcs.xml" new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ "b/\353\260\260\354\203\201\354\233\205/.idea/vcs.xml" @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git "a/\353\260\260\354\203\201\354\233\205/Programmers_\354\231\204\354\243\274\355\225\230\354\247\200\353\252\273\355\225\234\354\204\240\354\210\230/Programmers_\354\231\204\354\243\274\355\225\230\354\247\200\353\252\273\355\225\234\354\204\240\354\210\230.py" "b/\353\260\260\354\203\201\354\233\205/Programmers_\354\231\204\354\243\274\355\225\230\354\247\200\353\252\273\355\225\234\354\204\240\354\210\230/Programmers_\354\231\204\354\243\274\355\225\230\354\247\200\353\252\273\355\225\234\354\204\240\354\210\230.py" new file mode 100644 index 0000000..57427b4 --- /dev/null +++ "b/\353\260\260\354\203\201\354\233\205/Programmers_\354\231\204\354\243\274\355\225\230\354\247\200\353\252\273\355\225\234\354\204\240\354\210\230/Programmers_\354\231\204\354\243\274\355\225\230\354\247\200\353\252\273\355\225\234\354\204\240\354\210\230.py" @@ -0,0 +1,15 @@ +def solution(participant, completion): + answer = '' + participant.sort() + completion.sort() + i=0 + while i < len(participant): + if i == len(completion): + answer += participant[i] + break + if participant[i] != completion[i]: + answer += participant[i] + break + i += 1 + + return answer \ No newline at end of file