Skip to content

Instantly share code, notes, and snippets.

@VelizarHristov
Last active October 19, 2015 12:23
Show Gist options
  • Save VelizarHristov/a0d5da21d6bece87a36e to your computer and use it in GitHub Desktop.
Save VelizarHristov/a0d5da21d6bece87a36e to your computer and use it in GitHub Desktop.
# nums = a set
i = 0
loop do
break if nums.include? i
i += 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment