Sha256: e4601d92a0fe3d618cbb69bb6e6fe83178b09cdc02f082546de028797e2ef6e2
Contents?: true
Size: 383 Bytes
Versions: 120
Compression:
Stored size: 383 Bytes
Contents
package clock const testVersion = 4 // You can find more details and hints in the test file. type Clock // Complete the type definition. Pick a suitable data type. func New(hour, minute int) Clock { } func (Clock) String() string { } func (Clock) Add(minutes int) Clock { } // Remember to delete all of the stub comments. // They are just noise, and reviewers will complain.
Version data entries
120 entries across 120 versions & 1 rubygems