Skip to content

Commit

Permalink
Update math/check_factorial.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: David Leal <[email protected]>
  • Loading branch information
ewd00010 and Panquesito7 authored Jun 9, 2023
1 parent 7548b13 commit 41a2f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion math/check_factorial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ bool is_factorial(uint64_t n) {
* if n was the sum of a factorial then it should be divided until it
* becomes 1
*/
return (n == 1)
return (n == 1);
}
} // namespace math

Expand Down

0 comments on commit 41a2f3f

Please sign in to comment.