0 eliminated this guess
891 of 891 FIGRs remaining Can you guess today's celebrity FIGR?
Type at least two letters to see FIGR suggestions.
() => {
if (!rows.length) {
return "";
}
const latest = rows[0];
const totalRows = rows.length;
const matched = latest.result.tiles.filter((tile) => tile.color === TileColor.Correct).length;
const nameFragment = latest.person.name ? ` ${latest.person.name}` : "";
const matchFragment = matched ? `${matched} attribute${matched === 1 ? "" : "s"} matched` : "no attributes matched";
return `Guess ${totalRows}${nameFragment} added, ${matchFragment}.`;
}