From 24f0c12468a2d66dcae1a3204d949b195daffb38 Mon Sep 17 00:00:00 2001 From: MZuenni Date: Wed, 1 Mar 2023 12:50:38 +0100 Subject: added digit separator --- math/bigint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math/bigint.cpp') diff --git a/math/bigint.cpp b/math/bigint.cpp index df28a73..6f83a93 100644 --- a/math/bigint.cpp +++ b/math/bigint.cpp @@ -1,5 +1,5 @@ // base and base_digits must be consistent -constexpr ll base = 1000000; +constexpr ll base = 1'000'000; constexpr ll base_digits = 6; struct bigint { vll a; ll sign; -- cgit v1.2.3