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

@@ -10,3 +10,8 @@ def thirdAngleOfTriangleFunc(maxAngle=89):
problem = f"Third angle of triangle with angles {angle1} and {angle2} = "
solution = angle3
return problem, solution
thirdAngleOfTriangle = Generator("Third Angle of Triangle", 22,
"Third Angle of the triangle = ", "angle3",
thirdAngleOfTriangleFunc)