Find a String | Hacker Rank Solution in Python
Problem:
In this challenge, the user enters a string and a substring. You have to print the number of times that the substring occurs in the given string. String traversal will take place from left to right, not from right to left.
NOTE: String letters are case-sensitive.
Solution:
def count_substring(s,b):
return len([i for i in range(len(s)) if s[i:i+len(b)] == b])
if __name__ == '__main__':
string = raw_input().strip()
sub_string = raw_input().strip()
count = count_substring(string, sub_string)
print count
Comments
Post a Comment