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

@@ -9,3 +9,9 @@ def regularPolygonAngleFunc(minVal=3, maxVal=20):
exteriorAngle = round((360 / sideNum), 2)
solution = 180 - exteriorAngle
return problem, solution
angleRegularPolygon = Generator(
"Angle of a Regular Polygon", 29,
"Find the angle of a regular polygon with 6 sides", "120",
regularPolygonAngleFunc)