Created
January 12, 2016 15:35
-
-
Save chuck0523/f211105c9642615de170 to your computer and use it in GitHub Desktop.
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
n = gets.to_i | |
visited = [].fill(0, 0, n) | |
bloomed = 0 | |
n.times do |t| | |
f = gets.to_i | |
if visited[f] != 0 | |
bloomed += 1 | |
else | |
visited[f] = 1 | |
end | |
end | |
puts bloomed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment