Remove general problem and solution from generator object

This commit is contained in:
lukew3
2021-10-02 23:52:10 -04:00
parent a6dbd2cf9f
commit 6b35cbb452
114 changed files with 78 additions and 186 deletions

View File

@@ -15,6 +15,5 @@ def surfaceAreaCone(maxRadius=20, maxHeight=50, unit='m'):
surface_area_cone = Generator(
"Surface Area of cone", 38,
"Surface area of cone with height = a units and radius = b units is",
"c units^2", surfaceAreaCone,
surfaceAreaCone,
["maxRadius=20", "maxHeight=50", "unit='m'"])