Micro-modules are a good thing
bimorphic.com2 pointsby asattarmd0 comments
private String generateGuessSentence(char candidate, int count) {
if (count === 0) return "There are no " + candidate + "s";
if (count === 1) return "There is 1 " + candidate;
return "There are " + count + " " + candidate + "s";
}