79463526

Date: 2025-02-24 12:36:26
Score: 1.5
Natty:
Report link

words = input().split(" ")

for word in words:

word_count = 0
for word2 in words:

   if word2.lower() == word.lower():
       word_count += 1
print(f'{word} {word_count}')
       

Here is my solution. no imports just a simple nested loop.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: jesse