Sha256: ff14ae4891820e044bae3395d82ff194712ff2002f05754875fff055afc4153a
Contents?: true
Size: 620 Bytes
Versions: 134
Compression:
Stored size: 620 Bytes
Contents
using System; public static class Triangle { public static bool IsScalene(double side1, double side2, double side3) { throw new NotImplementedException("You need to implement this function."); } public static bool IsIsosceles(double side1, double side2, double side3) { throw new NotImplementedException("You need to implement this function."); } public static bool IsEquilateral(double side1, double side2, double side3) { throw new NotImplementedException("You need to implement this function."); } } public class TriangleException : Exception { }
Version data entries
134 entries across 134 versions & 1 rubygems