Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fit armstrong_number.cpp to guidelines #2457

Merged
merged 12 commits into from
Jun 20, 2023
Prev Previous commit
Next Next commit
Update math/armstrong_number.cpp
Co-authored-by: David Leal <[email protected]>
  • Loading branch information
realstealthninja and Panquesito7 authored Jun 16, 2023
commit e8ad9ff36c494d752ea1c73d7f2602d06d7e7b6d
2 changes: 1 addition & 1 deletion math/armstrong_number.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ static void test() {
// is_armstrong(12) returns false.
assert(is_armstrong(12) == false);

std::cout << "all tests have passed\n";
std::cout << "All tests have successfully passed!\n";
}

/**
Expand Down