import java.util.Collections; import java.util.List; public class ComputeBinaryTreeNodes { /* 9.7 */ public static List<List<Integer>> binaryTreeDepthOrder(BinaryTree<Integer> tree) { return Collections.emptyList(); } }