From a3a80dc5849861c9855f1dc4eda3829fbc5ddb4b Mon Sep 17 00:00:00 2001 From: Vishal Pankaj Chandratreya <19171016+tfpf@users.noreply.github.com> Date: Mon, 26 Feb 2024 22:42:31 +0530 Subject: [PATCH] Formatted. --- src/utils.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index d9db6aa..471b2d0 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -362,7 +362,8 @@ impl Long { } impl std::ops::AddAssign<&Long> for Long { fn add_assign(&mut self, other: &Long) { - self.digits.resize(std::cmp::max(self.digits.len(), other.digits.len()), 0); + self.digits + .resize(std::cmp::max(self.digits.len(), other.digits.len()), 0); let mut carry = false; for (sd, od) in self .digits