Skip to content

Instantly share code, notes, and snippets.

@atton
Last active December 15, 2015 05:49
Show Gist options
  • Save atton/5212261 to your computer and use it in GitHub Desktop.
Save atton/5212261 to your computer and use it in GitHub Desktop.
AOJ 0008
# after 1.9.2
while n = gets.chomp
puts (0..9).to_a.repeated_permutation(4).to_a.map{|a| a.inject(:+)}.select{|b| b == n.to_i}.size
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment