mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-11-10 11:09:43 +08:00
fix README.md (#333)
This commit is contained in:
parent
8590d7ad43
commit
d18dcd2e42
@ -137,7 +137,7 @@ a * b can be written in the below formats:
|
|||||||
```
|
```
|
||||||
|
|
||||||
The advantage of this approach is that in each recursive step one of the operands
|
The advantage of this approach is that in each recursive step one of the operands
|
||||||
reduces to half its original value. Hence, the run time complexity is `O(log(b)` where `b` is
|
reduces to half its original value. Hence, the run time complexity is `O(log(b))` where `b` is
|
||||||
the operand that reduces to half on each recursive step.
|
the operand that reduces to half on each recursive step.
|
||||||
|
|
||||||
> See [multiply.js](multiply.js) for further details.
|
> See [multiply.js](multiply.js) for further details.
|
||||||
|
Loading…
Reference in New Issue
Block a user