lcm

int.lcm(int2) â integer
Instance Public methods

Returns the least common multiple (always positive). 0.lcm(x) and x.lcm(0) return zero.

1
2
3
2.lcm(2)                    #=> 2
3.lcm(-7)                   #=> 21
((1<<31)-1).lcm((1<<61)-1#=> 4951760154835678088235319297
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.