Skip to content

Instantly share code, notes, and snippets.

@dabit
Created September 27, 2012 00:57
Show Gist options
  • Save dabit/3791551 to your computer and use it in GitHub Desktop.
Save dabit/3791551 to your computer and use it in GitHub Desktop.
Digitos
#
# Uso:
#
# ruby digitos.rb 1980 1987
#
puts (ARGV[0]..ARGV[1]).select {|n| n.chars.to_a.uniq.size == n.size}.size
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment