백준 10818번
import java.io.*;
interface Main {
public static void main(String[] args) throws Exception{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int len = Integer.parseInt(br.readLine());
String[] nums = br.readLine().split(" ");
int max = Integer.MIN_VALUE;
int min = Integer.MAX_VALUE;
for(String num : nums){
int n = Integer.parseInt(num);
if(n>=max) max = n;
if(n<=min) min = n;
}
System.out.printf("%d %d",min, max);
}
}
프로그래머스 나누어 떨어지는 숫자 배열
import java.util.*;
class Solution {
public int[] solution(int[] arr, int divisor) {
int[] answer = {};
ArrayList<Integer> al = new ArrayList<>();
for(int a : arr){
if(a%divisor == 0){
al.add(a);
}
}
if(al.isEmpty())
al.add(-1);
answer = al.stream().mapToInt(i -> i).toArray();
Arrays.sort(answer);
return answer;
}
}