HackerRank Tweets

  • + 0 comments

    Procedural programming is the best (jk)

    n = int(input())
    
    c = 0
    for _ in range(n):
        tweet = input().lower()
        if 'hackerrank' in tweet:
            c += 1
    print(c)