Notice
Recent Posts
Recent Comments
Link
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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
- database
- callback
- Porject
- json
- ๋๊ธฐ
- js
- JS #ํ๋ก์ ํธ
- slow and steady
- setTimeout()
- mysql
- ์ฐธ๊ณ ๋ธ๋ก๊ทธ
- sql
- promise
- https://youtube.com/playlist?list=PLuHgQVnccGMA5836CvWfieEQy0T0ov6Jh&si=FTaYv8m21EhO-A2K
- execCommand
- ajax
- db
- prj
- webpack
- eport
- Import
- async
- object
- ๊ฒ์
- ํผํ
- https://m.blog.naver.com/tt2t2am1118/221010125300
- ๋น๋๊ธฐ
- Project
- await
- addEventListener
Archives
- Today
- Total
C-log
๐ก1157๋ฒ ๋ณธ๋ฌธ
728x90
๋จธ๋ฆฌ ์์์๋ ๊ทธ๋ ค์ ธ์์ง๋ง ํ์ํ ํจ์๋ค์ ์ ๋ชฐ๋ผ ํด๋งค๋ฏ ์์ฑ ํ๋ค ๊ตฌ๊ธ๋ง์ ํ๋ค. (๊ทธ๋ฅ ํจ์๋ฅผ ๋ชฐ๋ผ๋ ๋ชจ๋ฅด๋ ๋๋ก ์์์ ์ผ๋ก ์์ฑํด๋ ๊ด์ฐฎ์ ๊ฒ์ผ๊น?)
N = input()
n = list(set(N))
print(f"n(x) = {n}")
cnt_list = []
for x in n:
# n์ ์์๋ค์ x๊ฐ์ ๋ด๋๋ค. ๋ฐ๋ผ์ cnt_list๋ n์ ์์์ set ๋ฐฐ์น ์์๋๋ก ๋์ด๋์ด ์๋ค.
cnt = N.count(x) # x๋ ๊ณง n์ ์์์ด๋ค.
cnt_list.append(cnt)
print(f"cnt_list(N.count(x)) = {cnt_list}")
if cnt_list.count(max(cnt_list)) > 1:
# ์ต๋ max๊ฐ์ count ํ์ ๋ 2๊ฐ ์ด์ ์ด๋ฉด ?์ด๋ค.
print('?')
else:
max_index = cnt_list.index(max(cnt_list))
print(f"max_index = {max_index}")
print(n[max_index])
press
n(x) = ['p', 'r', 'e', 's']
cnt_list(N.count(x)) = [1, 1, 1, 2]
max_index = 3
s
n(x) = ['p', 'r', 'e', 's']
cnt_list(N.count(x)) = [1, 1, 1, 2]
max_index = 3
s
ํด๋น ์คํฌ๋ฆฝํธ์ ํด์ค๊ณผ ํ์ด ๋ฐฉ๋ฒ์ ๋ค์ ํฌ์คํ ์์ ๋์ฑ ๊ตฌ์ฒด์ ์ผ๋ก ํ์ธํด ๋ณด์. ์ฌ๊ธฐ์ ์ ์ฝ๋์ ๋ด๊ฐ ์ ์ ์ฃผ์์ผ๋ก ๋ง์กฑํ์.
728x90
'๐ง Algorithm > Baekjoon๐ก' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
๐ก2941๋ฒ (0) | 2023.12.27 |
---|---|
๐กโจ์ค๊ฐ์ ๊ฒ : set()๊ณผ count() (0) | 2023.12.26 |
๐กโจ์ค๊ฐ์ ๊ฒ : reversed์ sorted (1) | 2023.12.26 |
๐ก10988๋ฒ (1) | 2023.12.26 |
๐กโจ์ค๊ฐ์ ๊ฒ : split (0) | 2023.12.26 |
Comments