We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe332ff commit 3b53377Copy full SHA for 3b53377
1 file changed
src/algorithms/cryptography/polynomial-hash/README.md
@@ -75,7 +75,7 @@ function hash(key, arraySize) {
75
76
The `hash()` method is not as efficient as it might be. Other than the
77
character conversion, there are two multiplications and an addition inside
78
-the loop. We can eliminate one multiplication by using **Horner's method*:
+the loop. We can eliminate one multiplication by using **Horner's method**:
79
80
> 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>
81
0 commit comments