import java.util.Collections; import java.util.List; public class GeneratePermutations { /* 16.3 */ public static List<List<Integer>> permutations(List<Integer> A) { return Collections.emptyList(); } }