Last active
August 16, 2017 21:00
-
-
Save eduardopoleo/aa1dae9ad16feab1e088f1a760c4794a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| 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