summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--math/gcd-lcm.cpp2
-rw-r--r--tcr.pdfbin327324 -> 327319 bytes
2 files changed, 1 insertions, 1 deletions
diff --git a/math/gcd-lcm.cpp b/math/gcd-lcm.cpp
index 10198ac..2f09b7c 100644
--- a/math/gcd-lcm.cpp
+++ b/math/gcd-lcm.cpp
@@ -1,3 +1,3 @@
// Laufzeiten: O(log(a) + log(b))
-ll gcd(ll a, ll b) { return b == 0 ? a : gcd (b, a % b); }
+ll gcd(ll a, ll b) { return b == 0 ? a : gcd(b, a % b); }
ll lcm(ll a, ll b) { return a * (b / gcd(a, b)); }
diff --git a/tcr.pdf b/tcr.pdf
index 0d9ec62..2e4d8cd 100644
--- a/tcr.pdf
+++ b/tcr.pdf
Binary files differ