import java.util.Collections; import java.util.List; public class ComputeExterior { /* 10.15 */ public static List<BinaryTree<Integer>> exteriorBinaryTree(BinaryTree<Integer> tree) { return Collections.emptyList(); } }