Skip to content

Instantly share code, notes, and snippets.

@mindplace
Last active March 21, 2016 00:06
Show Gist options
  • Select an option

  • Save mindplace/fb5f12863bd46e0752dd to your computer and use it in GitHub Desktop.

Select an option

Save mindplace/fb5f12863bd46e0752dd to your computer and use it in GitHub Desktop.
p Calculator.add(6, 5, 9) # => 20
p Calculator.multiply(2, 4) # => 8
p Calculator.tester(2, 3, 4) # => "Sorry, 'tester' method not avilable!"
p Calculator.median(1, 2, 3, 4) # => 2.5
p Calculator.median(1, 2, 3, 4, 5) # => 3
p Calculator.mode(2, 2, 2, 6, 5, 8, 8, 8, 8, 5) # => 8
p Calculator.mode(2, 2, 2, 2, 6, 5, 8, 8, 8, 8, 5) # => [2, 8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment