Skip to content

Instantly share code, notes, and snippets.

@tangentstorm
Last active January 4, 2016 15:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tangentstorm/8643627 to your computer and use it in GitHub Desktop.
Save tangentstorm/8643627 to your computer and use it in GitHub Desktop.
j vs haskell
h> (map sum)[[0..n]|n<-[0..10]
j] +/"1 i."0 >:i.11


j] +~^:5]1
h> let rfx f y = f y y ; pow = (\n f -> if n == 0 then id else f . pow (n-1) f) in pow 5 (rfx (+)) 1 

j] +/~i.4
h> let tbl f xs=[[f x y|x<-xs]|y<-xs] in tbl(+)[0..3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment