Created
August 23, 2013 07:10
-
-
Save djadmin/6316370 to your computer and use it in GitHub Desktop.
HackerRank's hackerrank-tweets problem
https://www.hackerrank.com/challenges/hackerrank-tweets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
count=0 | |
for i in xrange(input()): | |
text=str(raw_input()) | |
if 'hackerrank' in text.lower(): | |
count+=1 | |
print count | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment