작성
·
214
0
인텔리제이에서 돌릴때는 문제없이 돌아가는데 채점 사이트에서 컴파일 에러가 발생합니다. 왜이런가요?
public class b_01 {
public ArrayList<Integer> solution(int i, int arr[]){
ArrayList<Integer> answer = new ArrayList<>();
answer.add(arr[0]);
for(int a =1; a<i; a++){
if(arr[a]>arr[a-1]) answer.add(arr[a]);
}
return answer;
}
public static void main(String args[]){
b_01 b = new b_01();
Scanner sc = new Scanner(System.in);
int i = sc.nextInt();
int arr[] = new int[i];
for(int a = 0; a < i; a++){
arr[a] = sc.nextInt();
}
for(int x : b.solution(i,arr)){
System.out.print(x+" ");
}
}
}