Project

General

Profile

Actions

Bug #11606

closed

Prime.prime? should throw error on invalid inputs

Added by chaitanyav (NagaChaitanya Vellanki) over 8 years ago. Updated over 8 years ago.


Description

irb(main):003:0> Prime.prime?(1,3)
=> false
irb(main):004:0> Prime.prime?(1.3)
=> false
irb(main):005:0> Prime.prime?(20.3)
=> true

Prime.prime? converts floating point numbers to integer to determine if they are prime. A prime by definition is a integer > 1. Will include a patch for this.

Actions

Also available in: Atom PDF

Like0
Like0Like0