我有两个数组
default = ['0', '0', '0', '0'] # this is fixed
new = ['2', '3', ''] # it can be of many variants like ['', '1'] or
# ['1', '', '', ''], but will never have
# more than 4 elements
我想从上面的两个数组中得到一个结果数组
['2', '3', '0', '0']
如何通过一行简单的ruby 代码实现它?我可以在多行或在注入/减少的帮助下完成。