fix(curriculum): Updated semiPrime test (#57298)

This commit is contained in:
kaylalei 2024-11-22 16:52:59 -05:00 committed by GitHub
parent c7c333d6b2
commit e6520b9010
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ How many composite integers, $n < {10}^8$, have precisely two, not necessaril
`semiPrimes()` should return `17427258`.
```js
assert.strictEqual(euler187(), 17427258);
assert.strictEqual(semiPrimes(), 17427258);
```
# --seed--