import java.util.Collections; import java.util.List; public class ComputeSpiralOrdering { /* 6.17 */ public static List<Integer> matrixInSpiralOrder(List<List<Integer>> squareMatrix) { return Collections.emptyList(); } }