* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
1.0 KiB
1.0 KiB
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5a23c84252665b21eecc7e82 | Greatest common divisor | 5 | 302277 | greatest-common-divisor |
--description--
Write a function that returns the greatest common divisor of two integers.
--hints--
gcd
should be a function.
assert(typeof gcd == 'function');
gcd(24,36)
should return a number.
assert(typeof gcd(24, 36) == 'number');
gcd(24,36)
should return 12
.
assert.equal(gcd(24, 36), 12);
gcd(30,48)
should return 6
.
assert.equal(gcd(30, 48), 6);
gcd(10,15)
should return 5
.
assert.equal(gcd(10, 15), 5);
gcd(100,25)
should return 25
.
assert.equal(gcd(100, 25), 25);
gcd(13,250)
should return 1
.
assert.equal(gcd(13, 250), 1);
gcd(1300,250)
should return 50
.
assert.equal(gcd(1300, 250), 50);
--seed--
--seed-contents--
function gcd(a, b) {
}
--solutions--
function gcd(a, b) {
return b==0 ? Math.abs(a):gcd(b, a % b);
}