Out of order but localized

This commit is contained in:
lukew3
2020-10-19 20:33:18 -04:00
parent 5f2a5ab236
commit 84cb84a21c
83 changed files with 395 additions and 241 deletions

View File

@@ -11,3 +11,9 @@ def surfaceAreaCuboid(maxSide=20, unit='m'):
ans = 2 * (a * b + b * c + c * a)
solution = f"{ans} {unit}^2"
return problem, solution
surfaceAreaCuboidGen = Generator(
"Surface Area of Cuboid", 33,
"Surface area of cuboid with sides = a units, b units, c units is",
"d units^2", surfaceAreaCuboid)