Skip to content

Commit

Permalink
Update big_int.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
1vanK committed Mar 13, 2024
1 parent 5eaa9fc commit d460996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion big_int.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class BigInt
/// В шестнадцатеричной системе счисления 16 цифр: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F.
/// В BigInt используется система счисления с основанием 1'000'000'000: 0, 1, 3, ..., 10^9 - 1,
/// так как её легко преобразовывать в десятичную.
/// Для хранения каждой цифры используется тип u64, так как он может хранить квадрат любой цифры
/// Для хранения каждой цифры используется тип uint64_t, так как он может хранить квадрат любой цифры
using Digit = uint64_t;

private:
Expand Down

0 comments on commit d460996

Please sign in to comment.