본문 바로가기
JAVA/Programmers

JAVA 프로그래머스 [한 번만 등장한 문자] 자바

by tripleup 2023. 6. 7.
728x90
반응형

[프로그래머스] 코딩테스트 연습 -> 코딩테스트 입문 -> 한 번만 등장한 문자

https://school.programmers.co.kr/learn/courses/30/lessons/120896


해결 과정

 

 

소스 코드

 

import java.util.*;

class Solution {
    public String solution(String s) {
        String answer = "";
        
        String[] arr = s.split("");
        int a = 0;
        Arrays.sort(arr);
        
        for(int i=0; i<arr.length; i++) {
            a=0;
            for (int j=0; j<arr.length; j++) {
                if (arr[i].equals(arr[j])) {
                    a++; 
                }
            }
            if (a == 1) {
                answer += arr[i];
            }
        
        }
        return answer;
    }
}
728x90
반응형

댓글