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 |
Tags
- 편스토랑
- 파이썬
- 데이콘
- Docker
- 더현대서울 맛집
- 캐치카페
- 우분투
- PYTHON
- gs25
- 자연어처리
- 백준
- Kaggle
- 편스토랑 우승상품
- leetcode
- AI 경진대회
- SW Expert Academy
- Baekjoon
- 프로그래머스 파이썬
- 코로나19
- dacon
- 금융문자분석경진대회
- Real or Not? NLP with Disaster Tweets
- Git
- github
- hackerrank
- 프로그래머스
- ChatGPT
- ubuntu
- programmers
- 맥북
Archives
- Today
- Total
목록
반응형
BaekJoon 5358 Football Team 파이썬 (1)
반응형
솜씨좋은장씨
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bGkUyu/btrT9AtMehI/YcDrQ9PHvyjtLkIZsKKn50/img.png)
코딩 1일 1문제! 오늘의 문제는 백준의 Football Team 입니다. 5358번: Football Team Print the same list of names with every ‘i’ replaced with an ‘e’, every ‘e’ replaced with an ‘i’, every ‘I’ replaced with an ‘E’, and every ‘E’ replaced with an ‘I’. www.acmicpc.net 👨🏻💻 코드 ( Solution ) def football_team(name): change_word_dict = {"e": "i", "i": "e", "E": "I", "I": "E"} new_name_list = [change_word_dict[word] if word..
Programming/코딩 1일 1문제
2022. 12. 20. 21:37
반응형