Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- leetcode
- dacon
- 데이콘
- 우분투
- 프로그래머스 파이썬
- ChatGPT
- Kaggle
- 파이썬
- programmers
- 금융문자분석경진대회
- 코로나19
- 캐치카페
- SW Expert Academy
- PYTHON
- 자연어처리
- ubuntu
- github
- 편스토랑
- 더현대서울 맛집
- Real or Not? NLP with Disaster Tweets
- gs25
- Git
- hackerrank
- AI 경진대회
- 편스토랑 우승상품
- 맥북
- 백준
- 프로그래머스
- Baekjoon
- Docker
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 20291번 : 파일 정리 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 파일 정리 입니다.
Solution
from collections import Counter
def arrange_files(file_list):
file_formats = []
for file in file_list:
_, file_format = file.split(".")
file_formats.append(file_format)
cnt = Counter(file_formats).items()
sorted_list = sorted(cnt, key=lambda x: x[0])
for item in sorted_list:
print(f"{item[0]} {item[1]}")
if __name__ == "__main__":
file_list = []
for _ in range(int(input())):
file = input()
file_list.append(file)
arrange_files(file_list)
Solution 풀이
먼저 입력 받은 수 만큼 파일의 이름을 입력 받습니다.
입력 받은 파일의 목록을 리스트 형태로 저장한 다음
각 파일의 이름을 . 으로 split하여 이름과 확장자 명을 나누어 줍니다.
그럼 나온 확장자 명을 또 모은 뒤에
collections의 Counter를 활용하여 각 확장자 별로 몇 번이나 나왔는지 카운팅 한 다음
이를 출력하면 끝!
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 1871번 : 좋은 자동차 번호판 (Python) (0) | 2021.07.15 |
---|---|
[BaekJoon] 12871번 : 무한 문자열 (Python) (0) | 2021.07.14 |
[BaekJoon] 7600번 : 문자가 몇갤까 (Python) (0) | 2021.07.12 |
[BaekJoon] 11091번 : 알파벳 전부 쓰기 (Python) (0) | 2021.07.11 |
[BaekJoon] 10769번 : 행복한지 슬픈지 (Python) (0) | 2021.07.10 |
Comments