Ad
Code
Diff
  • using System;
    
    namespace Solution
    {
      public class BlockBuilder
      {
        public static int[][] BuildATower(int[] bag)
        {
          return new int[][] {new int[] {1}}; // Code goes here ...
        }
      }
    }
    • using System;
    • namespace Solution
    • {
    • public class BlockBuilder
    • {
    • public static int[,] BuildATower(int[] bag)
    • public static int[][] BuildATower(int[] bag)
    • {
    • return new int[,] { { 1 } }; // Code goes here ...
    • return new int[][] {new int[] {1}}; // Code goes here ...
    • }
    • }
    • }