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 | 31 |
Tags
- BOJ
- 헤드퍼스트 디자인패턴
- level1
- 코딩테스트
- 단계별로 풀어보기
- java
- Python
- Python 3
- 자바
- SELECT 절
- SQLD / SQLP
- Codeup
- 개념
- JAVA 11
- 기본
- HAVING 절
- 기초
- 명품 자바 프로그래밍
- Codeforces Round #802 (Div. 2)
- pypy3
- 백준
- baekjoon
- 기초100제
- 이론
- 파이썬
- programmers
- Java11
- 공공데이터
- 응용
- GROUP BY 절
Archives
- Today
- Total
목록6 (1)
Development Project
[ Baekjoon - 단계별로 풀어보기(05/29) ] - 6단계 : 문자열
11654 : 아스키코드 print(ord(input())) 11720 : 숫자의 합 a=int(input()) print(sum(list(map(int, input()))[:a])) 10809 : 알파벳 찾기 a=[-1]*26 cnt=0 for i in list(input()): if a[ord(i)-97]==-1: a[ord(i)-97]= cnt cnt+=1 for i in a: print(i,end=" ") # s=input() l=[-1]*26 for i in range(len(s)): if l[ord(s[i])-97]==-1: l[ord(s[i])-97]=i for i in l: print(i,end=' ') 2675 : 문자열 반복 n=int(input()) for i in range(n): ..
CodingTest/Baekjoon
2022. 5. 30. 00:57