代码错误

注意map不能直接修改原值,应该使用枚举器的原意,返回值才是。

arr.map{|x| x*=10} #no use to arr

正确的是

arr_new = arr.map{|x| x*=10} 

你可能感兴趣的:(代码错误)