Skip to content

Instantly share code, notes, and snippets.

@eduardopoleo
Last active August 16, 2017 21:00
Show Gist options
  • Select an option

  • Save eduardopoleo/aa1dae9ad16feab1e088f1a760c4794a to your computer and use it in GitHub Desktop.

Select an option

Save eduardopoleo/aa1dae9ad16feab1e088f1a760c4794a to your computer and use it in GitHub Desktop.
def unique_brute_force(s)
s.each_char.with_index do |char1, i|
s2 = s[i+1..-1]
s2.each_char do |char2|
return false if char1 == char2
end
end
return true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment