Skip to content

Instantly share code, notes, and snippets.

@jonathanpike
Created October 20, 2015 16:43
Show Gist options
  • Save jonathanpike/fa5aa7fc2cdad2e791aa to your computer and use it in GitHub Desktop.
Save jonathanpike/fa5aa7fc2cdad2e791aa to your computer and use it in GitHub Desktop.
def common_substring(string1, string2)
(string1.split("") & string2.split("")).join
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment