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
- Tree
- sorting
- Data Structure
- 코테
- 구현
- bit manipulation
- java
- dynamic programming
- string
- greedy
- 파이썬
- Number Theory
- two pointers
- geometry
- Stack
- Class
- Matrix
- array
- simulation
- Counting
- Method
- SQL
- 코딩테스트
- Math
- database
- Binary Search
- implement
- hash table
- Binary Tree
- 자바
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 문자열 정렬하기 (2) 본문
1. Input
1) 영어 대소문자로 이루어진 문자열 my_string
2. Output
1) my_string을 모두 소문자로 바꾸고 알파벳 순서대로 정렬한 문자열
3. Constraint
1) 0 < my_string 길이 < 100
4. Example
Input: my_string=“Beadc” -> Output: “abcde”
5. Code
1) 첫 코드(2022/10/31)
import java.util.Arrays;
// main()
char[] c = my_string.toLowerCase().toCharArray();
Arrays.sort(c);
return String.valueOf(c);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 잘라서 배열로 저장하기 (0) | 2022.11.02 |
---|---|
[프로그래머스/Lv.0] 7의 개수 (0) | 2022.11.02 |
[프로그래머스/Lv.0] 세균 증식 (0) | 2022.11.01 |
[프로그래머스/Lv.0] 제곱수 판별하기 (0) | 2022.11.01 |
[프로그래머스/Lv.0] 문자열안에 문자열 (0) | 2022.11.01 |