Maximum Q-value for a given state.
double maxQ(int state) => qTable[state].reduce((a, b) => a > b ? a : b);