Skip to content

Commit 3b53377

Browse files
committed
Fix MD formatting
1 parent fe332ff commit 3b53377

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/algorithms/cryptography/polynomial-hash

src/algorithms/cryptography/polynomial-hash/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ function hash(key, arraySize) {
7575

7676
The `hash()` method is not as efficient as it might be. Other than the
7777
character conversion, there are two multiplications and an addition inside
78-
the loop. We can eliminate one multiplication by using **Horner's method*:
78+
the loop. We can eliminate one multiplication by using **Horner's method**:
7979

8080
> a<sub>4</sub> * x<sup>4</sup> + a<sub>3</sub> * x<sup>3</sup> + a<sub>2</sub> * x<sup>2</sup> + a<sub>1</sub> * x<sup>1</sup> + a<sub>0</sub> = (((a<sub>4</sub> * x + a<sub>3</sub>) * x + a<sub>2</sub>) * x + a<sub>1</sub>) * x + a<sub>0</sub>
8181

0 commit comments

Comments
 (0)