📜  最佳 Ruby 备忘单 - Ruby 代码示例

📅  最后修改于: 2022-03-11 15:04:45.994000             🧑  作者: Mango

代码示例10
array = [5,4,1,3,2]
array.sort! # = [1,2,3,4,5] – works with text and other as well.
"b" <=> "a" # = 1 – combined comparison operator. Returns 0 if first = second, 1 if first > second, -1 if first < second
array.sort! { |a, b| b <=> a } # to sort from Z to A instead of A to Z