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.
2 parents 3d7953a + 38d2252 commit 5f31d0fCopy full SHA for 5f31d0f
Fizz Buzz/README.markdown
@@ -18,7 +18,7 @@ The modulus operator returns the remainder after an integer division. Here is an
18
19
| Division | Division Result | Modulus | Modulus Result |
20
| ------------- | -------------------------- | --------------- | ---------------:|
21
-| 1 / 3 | 0 with a remainder of 3 | 1 % 3 | 3 |
+| 1 / 3 | 0 with a remainder of 3 | 1 % 3 | 1 |
22
| 5 / 3 | 1 with a remainder of 2 | 5 % 3 | 2 |
23
| 16 / 3 | 5 with a remainder of 1 | 16 % 3 | 1 |
24
0 commit comments