Sha256: e22d799b99102d338e79c4e49d5bc6f009f716cb0c5d686391ecd1c8784711f2
Contents?: true
Size: 679 Bytes
Versions: 281
Compression:
Stored size: 679 Bytes
Contents
using System; using System.Collections.Generic; public class Triplet { public Triplet(int a, int b, int c) { } public int Sum() { throw new NotImplementedException("You need to implement this function."); } public int Product() { throw new NotImplementedException("You need to implement this function."); } public bool IsPythagorean() { throw new NotImplementedException("You need to implement this function."); } public static IEnumerable<Triplet> Where(int maxFactor, int minFactor = 1, int sum = 0) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems