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
- 자연어처리
- Git
- 백준
- gs25
- 데이콘
- 코로나19
- 맥북
- programmers
- 파이썬
- Real or Not? NLP with Disaster Tweets
- 더현대서울 맛집
- hackerrank
- Baekjoon
- dacon
- Kaggle
- 프로그래머스 파이썬
- Docker
- 우분투
- 캐치카페
- 금융문자분석경진대회
- github
- PYTHON
- ChatGPT
- 편스토랑 우승상품
- SW Expert Academy
- leetcode
- 편스토랑
- AI 경진대회
- 프로그래머스
- ubuntu
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 10886번 : 0 = not cute / 1 = cute (Python) 본문
Programming/코딩 1일 1문제
[BaekJoon] 10886번 : 0 = not cute / 1 = cute (Python)
솜씨좋은장씨 2021. 11. 1. 19:59728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 0 = not cute / 1 = cute 입니다.
👨🏻💻 코드 ( Solution )
from collections import Counter
def cute_or_not(opinions):
cnt = Counter(opinions).most_common(1)
if cnt[0][0] == 0:
answer = 'Junhee is not cute!'
elif cnt[0][0] == 1:
answer = 'Junhee is cute!'
return answer
if __name__ == "__main__":
opinions = []
for _ in range(int(input())):
opinion = int(input())
opinions.append(opinion)
print(cute_or_not(opinions))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 10936번 : BASE64 디코딩 (Python) (0) | 2021.11.05 |
---|---|
[BaekJoon] 10935번 : BASE64 인코딩 (Python) (0) | 2021.11.02 |
[BaekJoon] A+B - 3 (Python) (0) | 2021.10.29 |
[BaekJoon] 5893번 : 17배 (Python) (0) | 2021.10.26 |
[BaekJoon] 10156번 : 과자 (Python) (0) | 2021.10.25 |
Comments