Skip to main content
added 52 characters in body
Source Link
Giuseppe
  • 29.4k
  • 3
  • 33
  • 106

tinylisp, 6565 56 bytes

(load library (d M(q((x)(i(type?v x Int)1(max(c(length x)(map M x) 

Try it online!Try it online!

-9 bytes thanks to DLosc's suggestion for type abuse.

tinylisp, 65 bytes

(load library (d M(q((x)(i(type? x Int)1(max(c(length x)(map M x) 

Try it online!

tinylisp, 65 56 bytes

(load library (d M(q((x)(i(v x)1(max(c(length x)(map M x 

Try it online!

-9 bytes thanks to DLosc's suggestion for type abuse.

Source Link
Giuseppe
  • 29.4k
  • 3
  • 33
  • 106

tinylisp, 65 bytes

(load library (d M(q((x)(i(type? x Int)1(max(c(length x)(map M x) 

Try it online!