프로그래밍/Algorithm

[프로그래머스] 최댓값과 최솟값

일단개그하다 2022. 12. 18. 17:15

문제

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

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

접근 방법 및 풀이

문자열을 기준에 맞추어 나누고 int 타입으로 변환 후 모든 값을 비교하여 최솟값과 최댓값을 구함

import java.util.Arrays;

public class Q30_12939 {
    public String solution(String s) {
        int[] numbers = Arrays.stream(s.split(" "))
                .mapToInt((item -> Integer.parseInt(item))).toArray();

        int max = Integer.MIN_VALUE;
        int min = Integer.MAX_VALUE;

        for (int number : numbers) {
            max = Math.max(max, number);
            min = Math.min(min, number);
        }

        return min + " " + max;
    }
}