79708206

Date: 2025-07-20 16:59:08
Score: 2
Natty:
Report link

First, I got a file with every word from GitHub link: https://github.com/dwyl/english-words/blob/master/words_alpha.txt, then I wrote this code:

with open("words_alpha.txt", 'r') as file:
    words = file.readlines()
    words_filtered = [word.replace('\n', '') for word in words if len(word) < 7 and len(word) > 2]
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Aadvik