class Solution {
public List helper(int start, int end){ List result = new ArrayList<>(); if(start > end){ result.add(null); return result;