[백준]5597번 과제 안내신분…??
카테고리: Baekjoon
Problem Statement
Solution
Student_num = [i for i in range(1,31)]
for i in range(1,29):
a = int(input())
Student_num.remove(a)
print(Student_num[0])
print(Student_num[1])
- 매 iteration마다 input a를 받고, 미리 만들어둔 Student_num 리스트에서 input a에 해당하는 값들을 지워나간다.
- remove() 메서드를 사용한다.
댓글 남기기