반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

[programmers] 최소값 최대값 본문

이직/programmers

[programmers] 최소값 최대값

닉의네임 2023. 6. 2. 10:43
반응형

 

    public static String solution(String s) {
        String answer = "";
        String[] strings = s.split(" ");
        int min = Integer.parseInt(strings[0]);
        int max = Integer.parseInt(strings[0]);
        for (int i = 0; i < strings.length; i++) {
            if (strings[i].trim().length() > 0) {
                int nu = Integer.parseInt(strings[i]);
                if (nu <= min) {
                    min = nu;
                }
                if (nu >= max) {
                    max = nu;
                }
            }
        }
        answer = min + " " + max;
        return answer;
    }
반응형
Comments