码迷,mamicode.com
首页 > 其他好文 > 详细

6kyu Unary function chainer

时间:2017-08-08 14:06:12      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:chain   res   yield   together   amp   oge   lis   hat   mat   

题目:

Your task is to write a higher order function for chaining together a list of unary functions. In other words, it should return a function that does a left fold on the given functions.

chained([a,b,c,d])(input)
Should yield the same result as

d(c(b(a(input))))

 

Sample Tests:
function f1(x){ return x*2 }
function f2(x){ return x+2 }
function f3(x){ return Math.pow(x,2) }

function f4(x){ return x.split("").concat().reverse().join("").split(" ")}
function f5(xs){ return xs.concat().reverse() }
function f6(xs){ return xs.join("_") }

Test.assertEquals( chained([f1,f2,f3])(0), 4 )
Test.assertEquals( chained([f1,f2,f3])(2), 36 )
Test.assertEquals( chained([f3,f2,f1])(2), 12 )

Test.assertEquals(chained([f4,f5,f6])("lorem ipsum"), "merol_muspi")

6kyu Unary function chainer

标签:chain   res   yield   together   amp   oge   lis   hat   mat   

原文地址:http://www.cnblogs.com/tong24/p/7306250.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!