fix(curriculum): typo in DC 142 seed code (#64331)

This commit is contained in:
Tom
2025-12-05 11:20:47 -06:00
committed by GitHub
parent dd2a6ed7fa
commit 89a8bd2a8b

View File

@@ -51,7 +51,7 @@ assert.equal(stringSum("a12b34c56d78e90f123g456h789i0j1k2l3m4n5"), 1653);
```js
function stringSum(str) {
return arg;
return str;
}
```