* 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>
2.0 KiB
2.0 KiB
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
587d7dab367417b2b2512b70 | 函数柯里化 | 1 | 301232 | introduction-to-currying-and-partial-application |
--description--
arity
是函数所需的形参的数量。函数柯里化
意思是把接受多个arity
的函数变换成接受单一arity
的函数。
换句话说,就是重构函数让它接收一个参数,然后返回接收下一个参数的函数,依此类推。
举个例子:
//Un-curried function
function unCurried(x, y) {
return x + y;
}
//柯里化函数
function curried(x) {
return function(y) {
return x + y;
}
}
//Alternative using ES6
const curried = x => y => x + y
curried(1)(2) // 返回 3
柯里化在不能一次为函数提供所有参数情况下很有用。因为它可以将每个函数的调用保存到一个变量中,该变量将保存返回的函数引用,该引用在下一个参数可用时接受该参数。下面是使用柯里化
函数的例子:
// Call a curried function in parts:
var funcForY = curried(1);
console.log(funcForY(2)); // Prints 3
类似地,局部应用
的意思是一次对一个函数应用几个参数,然后返回另一个应用更多参数的函数。 举个例子:
//Impartial function
function impartial(x, y, z) {
return x + y + z;
}
var partialFn = impartial.bind(this, 1, 2);
partialFn(10); // Returns 13
--instructions--
填写add
函数主体部分,用柯里化添加参数x
,y
和z
.
--hints--
add(10)(20)(30)
应返回60
。
assert(add(10)(20)(30) === 60);
add(1)(2)(3)
应返回6
。
assert(add(1)(2)(3) === 6);
add(11)(22)(33)
应返回66
。
assert(add(11)(22)(33) === 66);
应返回x + y + z
的最终结果。
assert(code.match(/[xyz]\s*?\+\s*?[xyz]\s*?\+\s*?[xyz]/g));
--seed--
--seed-contents--
function add(x) {
// Only change code below this line
// Only change code above this line
}
add(10)(20)(30);
--solutions--
const add = x => y => z => x + y + z