exercism / exercism/problem-specifications
Rational-Numbers: >, <, ==, !=, >=, <= comparison tests?
- Vorherrschende Sprache
- Ruby
- Sterne
- 358
- Forks
- 563
- Ø Merge
- 18 Std. 41 Min.
- Gemergte PRs (30 T.)
- 2
Beschreibung
Would there be any interest in seeing test cases for comparing rational numbers?
```JSON
{
"description": "A half is less than three fourths",
"property": "lessThan",
"input": {
"r1": [1, 2],
"r2": [3, 4]
},
"expected": true
},
{
"description": "Half is greater than a fourth",
"property": "greaterThan",
"input": {
"r1": [1, 2],
"r2": [1, 4]
},
"expected": true
},
{
"description": "One is greater than or equal to a third",
"property": "greaterThanOrEqual",
"input": {
"r1": [13, 13],
"r2": [1, 3]
},
"expected": true
},
{
"description": "Two of the same are equal",
"property": "equal",
"input": {
"r1": [6, 1],
"r2": [6, 1]
},
"expected": true
},
{
"description": "Two different values are not equal",
"property": "notEqual",
"input": {
"r1": [3, 4],
"r2": [1, 2]
},
"expected": true
}
```
so and so forth.
I looked briefly to see if this topic had already be discussed and didn't find anything.
Beitragsleitfaden
Für dieses Repository ist kein Beitragsleitfaden indexiert
Bewertung
Dieses Issue wurde noch nicht bewertet.