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 0bfbb21 commit 3780affCopy full SHA for 3780aff
1 file changed
Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js
@@ -36,5 +36,6 @@ assertEquals(isProperFraction(1, 2), true);
36
assertEquals(isProperFraction(3, 1), false);
37
assertEquals(isProperFraction(2, 2), false);
38
assertEquals(isProperFraction(5, 0), false);
39
+assertEquals(isProperFraction(-1, 0), false);
40
assertEquals(isProperFraction(-2, 4), true);
41
assertEquals(isProperFraction(4, -2), false);
0 commit comments