Skip to content

Instantly share code, notes, and snippets.

@claytonflesher
Created September 20, 2015 02:26
Show Gist options
  • Save claytonflesher/1473b1029447ffd35497 to your computer and use it in GitHub Desktop.
Save claytonflesher/1473b1029447ffd35497 to your computer and use it in GitHub Desktop.
def count(string, substring, ticker = 0)
if string.include?(substring)
string.sub!(substring, "")
ticker += 1
ticker = count(string, substring, ticker)
end
ticker
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment