Skip to content

Instantly share code, notes, and snippets.

@killreal17
Created February 25, 2020 17:55
Show Gist options
  • Save killreal17/cfb8aa92c838339c1791c416f6c7cbd4 to your computer and use it in GitHub Desktop.
Save killreal17/cfb8aa92c838339c1791c416f6c7cbd4 to your computer and use it in GitHub Desktop.
Поиск подстроки в строке
def entry (str, substr):
if len(str) < len(substr):
return False
else:
if str[:len(substr)] != substr:
return entry(str[1:], substr)
else:
return True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment