Created
September 27, 2012 00:57
-
-
Save dabit/3791551 to your computer and use it in GitHub Desktop.
Digitos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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