Sha256: e4dfd6bbb5ae038f3dbb072ff3535a812104f9d61bc47f488592ef3e2688132b
Contents?: true
Size: 601 Bytes
Versions: 122
Compression:
Stored size: 601 Bytes
Contents
// This is a "stub" file. It's a little start on your solution. // It's not a complete solution though; you have to write some code. // Package leap should have a package comment that summarizes what it's about. // https://golang.org/doc/effective_go.html#commentary package leap // IsLeapYear should have a comment documenting it. func IsLeapYear(int) bool { // Write some code here to pass the test suite. // Then remove all the stock comments. // They're here to help you get started but they only clutter a finished solution. // If you leave them in, reviewers may protest! return false }
Version data entries
122 entries across 122 versions & 1 rubygems