issue using method 'odd?'

M

Mmcolli00 Mom

I keep getting a no method error when trying to find out if a count is
an odd number. I had tested the code with actual numbers and it works
fine. It seems like it is not liking how I am trying to use the method
'odd?' The count's class is of FixNum. I have tried converting to
interger but got same result. Here is the code that I am using. Do you
know if I need a gem or what I have not done here? Thanks. MC

searchText.rb:38: undefined method `odd?' for 8:Fixnum (NoMethodError)
from searchText.rb:30:in `each'
from searchText.rb:30
*****************************************
count1 = Hash.new(0)

File.open("NTemp.txt") do |src|
src.each_line do |line|
word1 = line.chomp.split(",")
count1[word1] += 1
#~ count2[word2] += 1
end
end

words = (count1.keys).uniq
words.each do |word|

#~ if count[word] == 1
#~ if count[word] == 2

if count[word].odd? == true
puts "Value does not contain a match: #{word}"
end
end
 
J

Jesús Gabriel y Galán

I keep getting a no method error when trying to find out if a count is
an odd number. I had tested the code with actual numbers and it works
fine. It seems like it is not liking how I am trying to use the method
'odd?' The count's class is of FixNum. I have tried converting to
interger but got same result. Here is the code that I am using. Do you
know if I need a gem or what I have not done here? Thanks. MC

searchText.rb:38: undefined method `odd?' for 8:Fixnum (NoMethodError)
from searchText.rb:30:in `each'
from searchText.rb:30
*****************************************
count1 = Hash.new(0)

File.open("NTemp.txt") do |src|
src.each_line do |line|
word1 = line.chomp.split(",")
count1[word1] += 1
#~ count2[word2] += 1
end
end

words = (count1.keys).uniq
words.each do |word|

#~ if count[word] == 1
#~ if count[word] == 2

if count[word].odd? == true
puts "Value does not contain a match: #{word}"
end
end



Ruby 1.8 doesn't have an odd? method per se. Rail's ActiveSupport adds
one to Integer. The code is quite simple, so I wouldn't require active
support only for this:

module EvenOdd
def multiple_of?(number)
self % number == 0
end

def even?
multiple_of? 2
end if RUBY_VERSION < '1.9'

def odd?
!even?
end if RUBY_VERSION < '1.9'
end

Ruby 1.9 has Fixnum#odd? though.

Jesus.
 
M

Michael Morin

Jesús Gabriel y Galán said:
Ruby 1.8 doesn't have an odd? method per se. Rail's ActiveSupport adds
one to Integer. The code is quite simple, so I wouldn't require active
support only for this:

Ruby 1.8.7 has odd?

uzimonkey@WOPRJr:~$ ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]
uzimonkey@WOPRJr:~$ ruby -e 'puts 1.odd?'
true
 
J

Jesús Gabriel y Galán

Jes=FAs Gabriel y Gal=E1n said:
Ruby 1.8 doesn't have an odd? method per se. Rail's ActiveSupport adds
one to Integer. The code is quite simple, so I wouldn't require active
support only for this:

Ruby 1.8.7 has odd?

uzimonkey@WOPRJr:~$ ruby -v
ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]
uzimonkey@WOPRJr:~$ ruby -e 'puts 1.odd?'
true

Doh, you are right ! I was checking 1.8.6.

Jesus.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top