Skip to content

Instantly share code, notes, and snippets.

/sub strings Secret

Created January 4, 2017 17:46
Show Gist options
  • Save anonymous/bf4cca7d076ce7a14b98cff5b2215725 to your computer and use it in GitHub Desktop.
Save anonymous/bf4cca7d076ce7a14b98cff5b2215725 to your computer and use it in GitHub Desktop.
def sub_strings(s)
0.upto(s.length - 1).flat_map do |start|
1.upto(s.length - start).map do |length|
s[start, length]
end
end.uniq
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment