Sha256: 6c046f26b54070af5dfba8d84f129d3182fe00306c54406382a0f204297728ff
Contents?: true
Size: 338 Bytes
Versions: 123
Compression:
Stored size: 338 Bytes
Contents
public static class Grains { public static ulong Square(int n) { return n == 1 ? 1 : 2 * Square(n - 1); } public static ulong Total() { ulong total = 0; for (int i = 1; i <= 64; i++) { total += Square(i); } return total; } }
Version data entries
123 entries across 123 versions & 1 rubygems