Ad
Code
Diff
  • # Find stray number
    def find_stray(n)
      n.count(n.min) > n.count(n.max) ? n.max : n.min
    end
    • # Find stray number
    • def find_stray(n)
    • n.reduce(:^)
    • n.count(n.min) > n.count(n.max) ? n.max : n.min
    • end