https://leetcode.com/problems/flatten-nested-list-iterator/description/ queuestackimp 1. 문제 및 접근 감싸있는 거 다 빼고 정수만 반환하라 3가지 메서드1. list형태의 nestedList가 들어오면 초기화2. next의 경우 들어오면, 다음 정수 반환3. hasNext 다음 수가 있음 true 아님 false [[1,1],2,[1,1]] = [1,1,2,1,1] 판단 방식은 while문에서 hasNext가 true면 next를 호출 stack or queue ? ide 예제로 확인하기 위해NestedInteger인터페이스 및 클래스 구현까지 Constraints: 1 The values of the integer..