!7 static Set nouns = synchroTreeSet(); p { new TableFinder finder; finder.go(loadSnippet("#3000154")); do { if (l(finder.data) < 10) continue; for (L row : finder.data) { S word = dropAllTags(row.get(1)).trim(); nouns.add(word); } } while (finder.findTable()); print(l(nouns) + " nouns loaded."); if (isMain()) printLines(nouns); } answer { if "number of nouns" ret "" + l(nouns); if (match("is * a noun", s, m)) ret nouns.contains(m.unq(0).toLowerCase()) ? "Yes" : "No"; }