DEV Community

Discussion on: Challenge: Get Closest Number in an Array

Collapse
 
andy profile image
Andy Zhao (he/him) • Edited

Ruby:

nums.min_by { |num| (given_num - num).abs }
#=> 800

Shamelessly taken from Stack Overflow 🙃 I was in a much more of a "just give me the answer" mood than "let's figure it out" mood.