Notice
Recent Posts
Link
Tags
- 1차원 배열
- join
- 자바
- 스프링
- spring
- jpa
- spring boot
- AWS
- DI
- mysql
- Docker
- hibernate
- PYTHON
- nginx
- SSL
- springboot
- spring mvc
- spring security 6
- Django
- static
- java
- 스프링부트
- 데이터베이스
- ORM
- string
- sql
- 프로그래머스
- @transactional
- select
- 문자열
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
목록백준 1157번 (1)
개발하는 자몽
[1157]문자열 - 단어 공부
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String input = br.readLine(); int cnt[] = new int[26]; for (byte inputs : input.getBytes()) { if (inputs >= 97) { cnt[inputs - 'a']++; } else { c..
Algorithm
2022. 4. 17. 14:36