top | item 39786080

(no title)

KarlKode | 1 year ago

I think you mistyped J code. I don't know any J but what I understood from your comment that it should be something like

  </ +. >/ *.

discuss

order

bruturis|1 year ago

You are right, the correct code is .</ +. >./

To understand this you need to know that >. and <. are the min and max functions, and that in J three functions separated by spaces, f g h, constitutes a new function mathematically defined by (f g h)(x) = g(f(x), h(x)). An example is (+/ % #) which applied to a list gives the mean of the list. Here +/ gives the total, # gives the number of elements and % is the quotient.