Sha256: dff8af4058e62e4f5b3fa64a25d62ed173088c6348eac25cefdbefb64bb8d5c0
Contents?: true
Size: 168 Bytes
Versions: 121
Compression:
Stored size: 168 Bytes
Contents
public class Year { public static bool IsLeap(int year) { if (year % 100 == 0) return year % 400 == 0; return year % 4 == 0; } }
Version data entries
121 entries across 121 versions & 1 rubygems