fix(curriculum): typo in daily challenge (#62235)

This commit is contained in:
Tom
2025-09-19 19:15:20 -05:00
committed by GitHub
parent ee8e750493
commit 4af015a08f
2 changed files with 3 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ assert.isTrue(hasExoplanet("ZXXWYZXYWYXZEGZXWYZXYGEE"));
```js
function hasExoplanet(readings) {
return readings
return readings;
}
```

View File

@@ -100,9 +100,9 @@ TestCase().assertEqual(classification(11432), "B")`)
## --seed-contents--
```py
def placeholder(arg):
def classification(temp):
return arg
return temp
```
# --solutions--