Skip to content

Instantly share code, notes, and snippets.

@wildjcrt
Created February 4, 2016 06:55
Show Gist options
  • Save wildjcrt/a180ece825a136ba259e to your computer and use it in GitHub Desktop.
Save wildjcrt/a180ece825a136ba259e to your computer and use it in GitHub Desktop.
x = ['男性', '男人', '兒子', '男孩', '父親', '爺爺', '叔叔', '丈夫', '女兒', '婦女', '女性', '奶奶', '女孩', '阿姨', '妻子', '母親'].shuffle
y = ['音樂', '人類學', '哲學', '英語', '歷史', '文學', '藝術', '數學', '工程學', '物理學', '地質學', '化學', '天文學', '生物學'].shuffle
result = []
y.each_with_index do |ey, i|
result << "#{x[i]}#{ey}"
end
result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment