* 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.2 KiB
1.2 KiB
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
af7588ade1100bde429baf20 | Missing letters | 5 | 16023 | missing-letters |
--description--
Find the missing letter in the passed letter range and return it.
If all letters are present in the range, return undefined.
--hints--
fearNotLetter("abce")
should return "d".
assert.deepEqual(fearNotLetter('abce'), 'd');
fearNotLetter("abcdefghjklmno")
should return "i".
assert.deepEqual(fearNotLetter('abcdefghjklmno'), 'i');
fearNotLetter("stvwx")
should return "u".
assert.deepEqual(fearNotLetter('stvwx'), 'u');
fearNotLetter("bcdf")
should return "e".
assert.deepEqual(fearNotLetter('bcdf'), 'e');
fearNotLetter("abcdefghijklmnopqrstuvwxyz")
should return undefined.
assert.isUndefined(fearNotLetter('abcdefghijklmnopqrstuvwxyz'));
--seed--
--seed-contents--
function fearNotLetter(str) {
return str;
}
fearNotLetter("abce");
--solutions--
function fearNotLetter (str) {
for (var i = str.charCodeAt(0); i <= str.charCodeAt(str.length - 1); i++) {
var letter = String.fromCharCode(i);
if (str.indexOf(letter) === -1) {
return letter;
}
}
return undefined;
}