freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-198-ambiguous-numbe...

26 lines
792 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

---
id: 5900f4331000cf542c50ff45
title: 问题198模糊数字
challengeType: 5
videoUrl: ''
---
# --description--
对于分母界限d的实数x的最佳近似是有理数r / s以简化形式其中s≤d因此任何比r更接近x的有理数p / q具有q> d。
通常对于所有分母边界唯一确定对实数的最佳近似。但是有一些例外例如9/40对分母界限6具有两个最佳近似值1/4和1/5。如果至少有一个分母绑定为x拥有我们将称为实数x不明确两个最佳近似值。显然模糊的数字必然是理性的。
有多少个模糊数x = p / q,0 <x <1/100其分母q是否不超过108
# --hints--
`euler198()`应该返回52374425。
```js
assert.strictEqual(euler198(), 52374425);
```
# --solutions--