void checkSizes(LookupTable table)
{
	for (int i = 0; i < table.size(); i++)
	{
		cout << "Row # " << i << " = " << table[i].size() << endl;
	}
}