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
- Math
- 파이썬
- Binary Search
- 코테
- Counting
- SQL
- simulation
- string
- java
- array
- dynamic programming
- Matrix
- Stack
- 자바
- database
- greedy
- bit manipulation
- Binary Tree
- 구현
- 코딩테스트
- Method
- Number Theory
- sorting
- Class
- hash table
- geometry
- two pointers
- implement
- Tree
- Data Structure
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] A로 B 만들기 본문
1. Input
1) 문자열 before
2) 문자열 after
2. Output
1) before의 순서를 바꿔 after를 만들 수 있으면 1을, 없으면 0을 반환
3. Constraint
1) 0 < before의 길이 == after의 길이 < 1,000
2) before와 after는 모두 소문자로 이루어져 있다.
4. Example
Input: before=“olleh”,after=“hello” -> Output: 1
Input: before=“muzi”,after=“ryan” -> Output: 0
5. Code
1) 첫 코드(2022/11/03)
import java.util.Arrays;
// main()
String[] b = before.split("");
String[] a = after.split("");
Arrays.sort(b); Arrays.sort(a);
for(int i=0 ; i<b.length ; i++)
if(!b[i].equals(a[i]))
return 0;
return 1;
2) 다른 사람의 풀이 중 배울만 했던 코드(2022/11/03)
import java.util.Arrays;
// main()
char[] a = before.toCharArray();
char[] b = after.toCharArray();
Arrays.sort(a);
Arrays.sort(b);
return new String(a).equals(new String(b)) ? 1 :0;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.1] 최소직사각형 (0) | 2022.11.09 |
---|---|
[프로그래머스/Lv.1] 나머지가 1이 되는 수 찾기 (0) | 2022.11.09 |
[프로그래머스/Lv.0] 이진수 더하기 (0) | 2022.11.09 |
[프로그래머스/Lv.0] 문자열 밀기 (0) | 2022.11.09 |
[프로그래머스/Lv.0] 유한소수 판별하기 (0) | 2022.11.09 |