Sha256: a6e44e12e22528df588ab3e1792f0e9ecc3759e23a0e99532f2251b0509a3af2
Contents?: true
Size: 577 Bytes
Versions: 136
Compression:
Stored size: 577 Bytes
Contents
using System; public class Clock { public Clock(int hours) { throw new NotImplementedException("You need to implement this function."); } public Clock(int hours, int minutes) { throw new NotImplementedException("You need to implement this function."); } public Clock Add(int minutesToAdd) { throw new NotImplementedException("You need to implement this function."); } public Clock Subtract(int minutesToSubtract) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
136 entries across 136 versions & 1 rubygems