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 #1

Updated by marcandre (Marc-Andre Lafortune) over 8 years ago

  • Status changed from Open to Closed

Applied in changeset r52201.


  • lib/prime.rb: Add basic argument checking to Prime.prime?
    [Bug #11606]

Updated by marcandre (Marc-Andre Lafortune) over 8 years ago

Totally agree. I hope you'll find my fix acceptable.
Thanks for creating the issue

Actions

Also available in: Atom PDF

Like0
Like0Like0