Sha256: 66aec73df49920a79aa132bc61ae7ea07d93af0798f0c94edc5ae78ceeb673f1
Contents?: true
Size: 644 Bytes
Versions: 40
Compression:
Stored size: 644 Bytes
Contents
using System; public class Matrix { public Matrix(string input) { } public int Rows { get { throw new NotImplementedException("You need to implement this function."); } } public int Cols { get { throw new NotImplementedException("You need to implement this function."); } } public int[] Row(int row) { throw new NotImplementedException("You need to implement this function."); } public int[] Column(int col) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
40 entries across 40 versions & 1 rubygems