Skip to content

Commit

Permalink
[프로그래머스] 체육복(#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
heerucan committed Dec 30, 2021
1 parent 9c74dc7 commit b93c35d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Empty file added Programmers/main.py
Empty file.
12 changes: 12 additions & 0 deletions Programmers/체육복.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# 풀이 참고
def solution(n, lost, reserve):
# 여벌교복 가져온 학생도 도난 당할 수 있어서 중복삭제
reserveSet = set(reserve) - set(lost)
lostSet = set(lost) - set(reserve)

for i in reserveSet:
if i - 1 in lostSet:
lostSet.remove(i - 1)
elif i + 1 in lostSet:
lostSet.remove(i + 1)
return n - len(lostSet)

0 comments on commit b93c35d

Please sign in to comment.