https://school.programmers.co.kr/learn/courses/30/lessons/120886
class Solution {
public int solution(String before, String after) {
int answer = 0;
String[] beforeArr = before.split("");
String[] afterArr = after.split("");
int length = before.length();
int[] afterCheck = new int[length];
int count = 0;
for(int i=0;i<length;i++){
for(int j=0;j<length;j++){
if(afterCheck[j]==0 &&beforeArr[i].equals(afterArr[j])){
afterCheck[j]=1;
count++;
break;
}
}
}
if(count==length){
answer = 1;
}
return answer;
}
}
'JAVA > 프로그래머스' 카테고리의 다른 글
[프로그래머스/자바] 안전지대 (0) | 2023.09.04 |
---|---|
[프로그래머스/자바] 캐릭터의 좌표 (0) | 2023.09.03 |
[프로그래머스/자바] 다항식 더하기 (0) | 2023.09.01 |
[프로그래머스/자바] 자릿수 더하기 (0) | 2023.08.31 |
[프로그래머스/자바] Lv.0 삼각형의 완성조건(2) (0) | 2023.07.14 |
댓글