Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
for(var i = 0; i < 200000; i += 50){ // Do Stuff }
私がそれを行うと考えることができる唯一の方法は、次のことを行うことです
arr = [0,50,100,...,200000] arr.each do |i| // Do Stuff end
それが実際に唯一の方法である場合。どうすればそのアレイをすばやく構築できますか?
(0...200000).step(50) do |i| # Do stuff end