We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eb3a50 commit f6786ffCopy full SHA for f6786ff
Solutions/Session08/test_quadratic.py
@@ -17,6 +17,15 @@ def test_evaluate():
17
q = Quadratic(1,2,3)
18
19
assert q(3) == 9 + 6 + 3
20
+ assert q(0) == 3
21
+
22
23
+def test_evaluate2():
24
+ q = Quadratic(2,1,-3)
25
26
+ assert q(0) == -3
27
+ assert q(1) == 2 + 1 - 3
28
+ assert q(-2) == 8 - 2 - 3
29
30
31
def test_bad_input():
lightning_schedule.txt
@@ -27,7 +27,7 @@ week 8: Arielle R Simmons
week 8: Eric W Westman
week 8: Ryan J Albright
week 9: Alexandra N Kazakova ** needs to be re-sheduled **
-week 9: Erik Ivan Lottsfeldt
+week 9: Erik Ivan Lottsfeldt ** dropped**
week 9: Louis John Ascoli
32
week 9: Ralph P Brand
33
week 10: Bryan L Davis
0 commit comments