Notice
Recent Posts
Link
Tags
- jpa
- hibernate
- nginx
- SSL
- AWS
- 자바
- join
- 문자열
- 스프링부트
- ORM
- spring security 6
- DI
- @transactional
- 데이터베이스
- PYTHON
- Docker
- Django
- springboot
- 프로그래머스
- 1차원 배열
- java
- 스프링
- string
- sql
- spring
- spring boot
- spring mvc
- select
- mysql
- static
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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