일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- til
- Daily Commit
- cpp
- 2015 봄학기 알고리즘
- centuryFromYear
- Sequential Search
- adjacentElementsProduct
- Numpy
- C++
- 피보나치 수
- data_structure
- Python
- 2750
- 10953
- 수 정렬하기
- codesignal
- shapeArea
- flask
- matrixElementsSum
- 백준
- 파이썬 포렌식
- 파이썬머신러닝완벽가이드
- almostIncreasingSequence
- collections.deque
- All Longest Strings
- recursion
- codesingal
- Counting cells in a blob
- 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) Colored by Color Scripter cs 다른 사람의 코드 1print(*map(input().find, map(chr, range(97, 123))), sep=' ')cs
Programming_prob/BaekJoon
2020. 10. 5. 06:10