Browse Source

docs(count_factorial_steps): improve subject readibility

DEV-3972-prepare-blockchain-branch-subjects
nprimo 2 years ago committed by Niccolò Primo
parent
commit
c46c81e469
  1. 2
      subjects/count_factorial_steps/README.md

2
subjects/count_factorial_steps/README.md

@ -4,7 +4,7 @@
Create a **function** named `count_factorial_steps` that receives a factorial number and counts how many multiplications are necessary to have this number.
If the argument is not a factorial or == 0 || 1 then the function should return 0.
If the argument is not a factorial, or it is equal 0 or 1, then the function should return 0.
```rust
fn count_factorial_steps(factorial: u64) -> u64 {

Loading…
Cancel
Save