#38
Maximum value
 

Difficulty:Easy
Topics:core-functions


Write a function which takes a variable number of parameters and returns the maximum value.
test not run
(= (__ 1 8 3 4) 8)
test not run
(= (__ 30 20) 30)
test not run
(= (__ 45 67 11) 67)
Special Restrictions
  • max
  • max-key


  • Code which fills in the blank: