Is 'mod' working correctly?
user=> (map #(mod % 3) (range -9 9))
(3 1 2 3 1 2 3 1 2 0 1 2 0 1 2 0 1 2)
It disagrees with, for example, Ruby:
irb(main):002:0> (-9..9).map{|x| x % 3}
=> [0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0]
And python:
>>> map( lambda x: x % 3, range(-9,9) )
[0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2]
--Chouser
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---