2012-02-08 54 views

回答

10

你可以試試這個方法:

def repeat(input, n) 
    ([input] * n).join ' ' 
end 
+0

真棒,謝謝 – mehulkar 2012-02-12 10:07:11

7

簡單,

def repeat(input, n) 
    ("#{input} " * n).strip 
end 
+0

尼斯! strip方法刪除前導和尾隨空格。 – 2013-08-19 07:35:26

3
def repeat(input, n) 
    Array.new(n, input).join ' ' 
end 
相關問題