일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- codesignal
- 수 정렬하기
- 2750
- All Longest Strings
- codesingal
- til
- 파이썬 포렌식
- Counting cells in a blob
- Numpy
- adjacentElementsProduct
- 피보나치 수
- almostIncreasingSequence
- 백준
- Python
- shapeArea
- matrixElementsSum
- cpp
- Daily Commit
- recursion
- centuryFromYear
- 10953
- Sequential Search
- collections.deque
- 2015 봄학기 알고리즘
- flask
- data_structure
- 파이썬머신러닝완벽가이드
- C++
- baekjun
- markdown
Archives
- Today
- Total
Introfor
[백준] 10809번 알파벳 찾기 본문
알파벳을 리스트에 담아 입력받은 단어가 리스트에 존재한다면 존재값을 넣고 없을 경우 -1을 넣습니다.
1
2
3
4
5
6
7
8
9
10
|
def solve():
alphabet = list(map(chr, range(97, 123)))
string = input()
for i in range(len(alphabet)):
alphabet[i] = string.find(alphabet[i])
return alphabet
res = solve()
print(*res)
|
cs |
다른 사람의 코드
1 | print(*map(input().find, map(chr, range(97, 123))), sep=' ') | cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 1157번 단어 공부 (0) | 2020.10.06 |
---|---|
[백준] 2675번 문자열 반복 (0) | 2020.10.05 |
[백준] 1065번 한수 (0) | 2020.10.05 |
[백준] 4673번 셀프 넘버 (0) | 2020.10.03 |
[백준] 2484번 주사위 네개 (0) | 2020.09.28 |
Comments