Integer[] yArr = ySet.toArray(new Integer[0]);
new Integer[0] 이렇게 0 넣어주면 크기 알아서 잡음
List yList = new ArrayList<>(ySet);