Needle in a Needlestack

The answer to this puzzle is a word found in the SOWPODS word list. Once you've downloaded a copy of that file, you can create an array containing every entry with the following code:

// Node.js
const fs = require("fs")

words = fs.readFileSync("./sowpods.txt").toString().split("\n")
# Python
with open("sowpods.txt") as f:
	words = f.read().split("\n")

The following statements about the answer word are all true.

Back