We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d8a73d + caab644 commit b98d1a8Copy full SHA for b98d1a8
solutions/silver/apio-11-TableColoring.mdx
@@ -32,7 +32,7 @@ for all $x, y > 1$.
32
After analysing this recurrence, we find that we actually have
33
34
$$
35
-c(x, y) = \lnot (c(0, 0) \oplus c(0, y) \oplus c(x, 0) \oplus ((x \cdot y) \% 2))
+c(x, y) = (c(0, 0) \oplus c(0, y) \oplus c(x, 0) \oplus ((x \cdot y) \% 2))
36
37
38
I made a
0 commit comments