* fix: removed more assert msg args * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com> * fix: remove single quotes wrapping testString Co-Authored-By: Parth Parth <34807532+thecodingaviator@users.noreply.github.com>
994 B
994 B
id, challengeType, title
| id | challengeType | title |
|---|---|---|
| 5900f38e1000cf542c50fea1 | 5 | Problem 34: Digit factorials |
Description
Instructions
Tests
tests:
- text: '<code>digitFactorial()</code> should return { sum: 40730, numbers: [145, 40585] }.'
testString: "assert.deepEqual(digitFactorial(), { sum: 40730, numbers: [145, 40585] });"
Challenge Seed
function digitFactorial() {
// Good luck!
var sum = 0;
var numbers = [];
return { sum, numbers };
}
digitFactorial();
Solution
// solution required