* 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>
100 lines
1.8 KiB
Markdown
100 lines
1.8 KiB
Markdown
---
|
|
id: 5a23c84252665b21eecc7e7a
|
|
title: Generate lower case ASCII alphabet
|
|
challengeType: 5
|
|
forumTopicId: 302274
|
|
dashedName: generate-lower-case-ascii-alphabet
|
|
---
|
|
|
|
# --description--
|
|
|
|
Write a function to generate an array of lower case ASCII characters for a given range. For example, given the range `['a', 'd']`, the function should return `['a', 'b', 'c', 'd']`.
|
|
|
|
# --hints--
|
|
|
|
`lascii` should be a function.
|
|
|
|
```js
|
|
assert(typeof lascii == 'function');
|
|
```
|
|
|
|
`lascii("a","d")` should return an array.
|
|
|
|
```js
|
|
assert(Array.isArray(lascii('a', 'd')));
|
|
```
|
|
|
|
`lascii('a','d')` should return `[ 'a', 'b', 'c', 'd' ]`.
|
|
|
|
```js
|
|
assert.deepEqual(lascii('a', 'd'), results[0]);
|
|
```
|
|
|
|
`lascii('c','i')` should return `[ 'c', 'd', 'e', 'f', 'g', 'h', 'i' ]`.
|
|
|
|
```js
|
|
assert.deepEqual(lascii('c', 'i'), results[1]);
|
|
```
|
|
|
|
`lascii('m','q')` should return `[ 'm', 'n', 'o', 'p', 'q' ]`.
|
|
|
|
```js
|
|
assert.deepEqual(lascii('m', 'q'), results[2]);
|
|
```
|
|
|
|
`lascii('k','n')` should return `[ 'k', 'l', 'm', 'n' ]`.
|
|
|
|
```js
|
|
assert.deepEqual(lascii('k', 'n'), results[3]);
|
|
```
|
|
|
|
`lascii('t','z')` should return `[ 't', 'u', 'v', 'w', 'x', 'y', 'z' ]`.
|
|
|
|
```js
|
|
assert.deepEqual(lascii('t', 'z'), results[4]);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --after-user-code--
|
|
|
|
```js
|
|
let results=[
|
|
[ 'a', 'b', 'c', 'd' ],
|
|
[ 'c', 'd', 'e', 'f', 'g', 'h', 'i' ],
|
|
[ 'm', 'n', 'o', 'p', 'q' ],
|
|
[ 'k', 'l', 'm', 'n' ],
|
|
[ 't', 'u', 'v', 'w', 'x', 'y', 'z' ]
|
|
]
|
|
```
|
|
|
|
## --seed-contents--
|
|
|
|
```js
|
|
function lascii(cFrom, cTo) {
|
|
|
|
}
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```js
|
|
function lascii(cFrom, cTo) {
|
|
|
|
function cRange(cFrom, cTo) {
|
|
var iStart = cFrom.charCodeAt(0);
|
|
|
|
return Array.apply(
|
|
null, Array(cTo.charCodeAt(0) - iStart + 1)
|
|
).map(function (_, i) {
|
|
|
|
return String.fromCharCode(iStart + i);
|
|
|
|
});
|
|
}
|
|
|
|
return cRange(cFrom, cTo);
|
|
|
|
}
|
|
```
|