第一个“Euler 工程”问题:在1到1000之间,将3和5的倍数打成1和5,我提出了这个问题(简单简单)
sum = 0
1.upto(999) { |i| sum += i if 0 == i%3 || 0 == i%5 }
sum
但我觉得这有用,但不行, 谁能告诉我我做错了什么, 或为什么它不起作用?
1.upto(999).inject(0) { |sum, i| sum + i if 0 == i%3 || 0 == i%5 }
谢谢!
第一个“Euler 工程”问题:在1到1000之间,将3和5的倍数打成1和5,我提出了这个问题(简单简单)
sum = 0
1.upto(999) { |i| sum += i if 0 == i%3 || 0 == i%5 }
sum
但我觉得这有用,但不行, 谁能告诉我我做错了什么, 或为什么它不起作用?
1.upto(999).inject(0) { |sum, i| sum + i if 0 == i%3 || 0 == i%5 }
谢谢!
inject
将块的结果传递到下一个迭代作为第一个参数。 当您的 > if
语句是假的时, 您的区块会返回 < code> nil , 然后以 < code> sum 的语句被传送回 < code > sum 。
为了得到正确的答案, 区块在错误时应该返回当前金额 :
1.upto(999).inject(0) { |sum, i| (0 == i%3 || 0 == i%5) ? sum + i : sum }
补充回答:如果您即将解决 Euler 问题, 您应该开始建立您自己的可重复使用代码的扩展。 在这种情况下, 第一个扩展将是 Enumberable# sum
:
module Enumerable
def sum
inject(0, :+)
end
end
现在,你可以写出一个 区分补习条件的解决方案(你可以大声读出来,这很合理, 典型的功能/声明风格):
1.upto(999).select { |x| x % 3 == 0 || x % 5 == 0 }.sum
您甚至可以将其推进一步, 并创建 Fixnum#divisible_by?
, 这样您就可以写入 :
1.upto(999).select { |x| x.divisible_by?(3) || x.divisible_by?(5) }.sum
更多:在这里,这不是一个问题, 但是在严格执行( 使用阵列的阵列) 之后, 需要太多的内存。 尝试 < a href=" http:// bugs. ruby- lang. org/ issues/ 4890" rel=" nofollow" >laziness a > :
require lazy
1.upto(999).lazy.select { |x| x % 3 == 0 || x % 5 == 0 }.sum
1.upto(999).inject(0) { |sum, i| sum += i if 0 == i%3 || 0 == i%5; sum }
也行得通(注意 )。
或者,使用
(1..999).select{|x| x%3==0||x%5==0}.inject &:+
(1. 999.) to_a.keep_ifddd% 3 = 0 d% 5 = 0}. duceduce (:+)
表示完整性 。
The project I m doing is written in Java and parsers source code files. (Java src up to now). Now I d like to enable parsing Ruby code as well. Therefore I am looking for a parser in Java that parses ...
collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...
All of the following API do the same thing: open a file and call a block for each line. Is there any preference we should use one than another? File.open("file").each_line {|line| puts line} open("...
I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?
Here s the string: 04046955104021109 I need it to be formatted like so: 040469551-0402-1109 What s the shortest/most efficient way to do that with ruby?
I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml
Can sources for discrete ruby extension modules live in the same directory, controlled by the same extconf.rb script? Background: I ve a project with two extension modules, foo.so and bar.so which ...
guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...