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
- 자바
- 코딩테스트
- BOJ
- 기초100제
- programmers
- 파이썬
- Codeforces Round #802 (Div. 2)
- 헤드퍼스트 디자인패턴
- Python 3
- Java11
- Codeup
- 이론
- SELECT 절
- HAVING 절
- 응용
- Python
- 백준
- java
- level1
- SQLD / SQLP
- 단계별로 풀어보기
- 명품 자바 프로그래밍
- 기초
- pypy3
- baekjoon
- JAVA 11
- 개념
- 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