일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 11057
- 나머지
- permutation
- 홈화면
- 11053
- 파이썬
- 매일11시
- lcm
- 뒤로가기
- 1182
- 순열
- 코테
- Android
- Combination
- 11054
- 앱
- 9095
- itertools
- 1260
- expo
- 안드로이드
- 11기
- 백준
- 코틀린
- Kotlin
- 최소공배수
- 괄호
- LCS
- Python
- 6603
Archives
- Today
- Total
목록1764 (1)
황소개발자
백준 1764 파이썬 python : 듣보잡 @@황소처럼 우직하게@@ strip 을 일상화하자^^
import sys input = sys.stdin.readline n, m = map(int, input().split()) not_hear = [] not_see = [] for i in range(n): not_hear.append(input().strip()) for i in range(m): not_see.append(input().strip()) duplicated = set(not_hear) & set(not_see) print(len(duplicated)) duplicated = sorted(list(duplicated)) for i in duplicated: print(i) 뭐 알고리즘 있을까 햇는데, 그냥 집합으로 구현. 그리고 strip 생활화^^
백준 문제 풀이
2020. 4. 21. 14:37