Sha256: f7d5a6e46d83824ff28b8b023e628abcc4fe6111b56e941e0dc7cfb5cdc4c82f
Contents?: true
Size: 650 Bytes
Versions: 137
Compression:
Stored size: 650 Bytes
Contents
class Triangle { Triangle(double side1, double side2, double side3) throws TriangleException { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); } boolean isEquilateral() { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); } boolean isIsosceles() { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); } boolean isScalene() { throw new UnsupportedOperationException("Delete this statement and write your own implementation."); } }
Version data entries
137 entries across 137 versions & 1 rubygems