mirror of
https://github.com/TheAlgorithms/Ruby
synced 2024-11-16 19:50:00 +01:00
4bb534f312
Add maths to directory
10 lines
170 B
Ruby
10 lines
170 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Calculates the absolute value of a number
|
|
class Abs
|
|
def self.call(number)
|
|
return -number if number.negative?
|
|
|
|
number
|
|
end
|
|
end
|