인프런 커뮤니티 질문&답변
solution 클래스 관련 질문드립니다.
해결된 질문
작성
·
204
0
강사님 안녕하세요!
solution 클래스 작성 시 int n과 int[] arr 두 가지를 인자로 받을 때와 int[] arr 한 가지만 인자로 받을 때 결과는 같은데 차이점이 궁금해서 질문드립니다.
public ArrayList<Integer> solution (int n, int[] arr)
public ArrayList<Integer> solution (int[] arr)






앗 이해됐습니다!! 답변 감사합니다!!