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 |
Tags
- 파이썬
- 캐치카페
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 더현대서울 맛집
- 데이콘
- github
- 백준
- gs25
- leetcode
- Git
- ubuntu
- 우분투
- Docker
- dacon
- 편스토랑
- 금융문자분석경진대회
- hackerrank
- AI 경진대회
- Baekjoon
- 프로그래머스 파이썬
- 프로그래머스
- programmers
- 맥북
- 자연어처리
- 편스토랑 우승상품
- PYTHON
- SW Expert Academy
- ChatGPT
- 코로나19
Archives
- Today
- Total
솜씨좋은장씨
[Programmers] 한 번만 등장한 문자 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 프로그래머스의 한 번만 등장한 문자 입니다.
👨🏻💻 문제 풀이
단어가 얼마나 등장했는지 정보를 담은 freq_dict 을 만들고
freq_dict = {}
for word in list(s):
if word not in freq_dict.keys():
freq_dict[word] = 0
freq_dict[word] += 1
그 freq_dict 에서 한번씩만 등장한 단어만을 리스트에 남기고 오름차순으로 정렬한 다음
one_words = sorted([word[0] for word in freq_dict.items() if word[1] == 1])
join 하여 정답을 만들면 끝!
"".join(one_words)
👨🏻💻 코드 ( Solution )
def solution(s):
freq_dict = {}
for word in list(s):
if word not in freq_dict.keys():
freq_dict[word] = 0
freq_dict[word] += 1
one_words = sorted([word[0] for word in freq_dict.items() if word[1] == 1])
return "".join(one_words)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[Programmers] 바탕화면 정리 (Python) (0) | 2023.03.06 |
---|---|
[Programmers] 가위 바위 보 (Python) (0) | 2023.03.05 |
[Programmers] 순서쌍의 개수 (Python) (0) | 2023.03.03 |
[Programmers] 숨어있는 숫자의 덧셈 (2) (Python) (0) | 2023.03.02 |
[Programmers] 다항식 더하기 (Python) (0) | 2023.03.01 |
Comments