The Zener cards were invented by Karl Zener and used by J B Rhine in his experiments on extrasensory perception (ESP) at Duke University in the 1930s. They comprise cards of each of five types, showing a square, circle, star, cross, or wavy lines:

A standard pack contains 25 cards, five of each type.
A run consists of a subject trying to guess each card in a pack in turn. If we replace and shuffle after each guess, his expected score is 5. In another question I asked what the expected score is if we don't replace, and if instead we keep a record (or just remember) how many cards of each type have already come up. The answer turns out to be $\frac{23148348523}{2677114440}=8.65$ to 2 decimal places.
What is the expected score if we try to minimise it?
If we guess randomly for the first 21 cards we will know for certain at least one shape that does not appear in the next 4, and so we can make sure we get our last 4 choices wrong, which will give us an expected score of $\frac{21}{5}=4.2$. On average we can get lower still, because sometimes after guessing randomly for only 20 cards we will know that the remaining cards are not all different, in which case we will know at least one shape that doesn't appear in those 5 and we will get an expected score of $\frac{20}{5}=4$. So the answer is certainly less than 4.2.
As with the maximization problem, this admits to a recursive solution through what is effectively dynamic programming. Let the number of remaining cards of each type be ${\bf n}=(n_1, n_2, n_3, n_4, n_5)$. The probability of type $i$ coming up next is $p_i({\bf n})=n_i / \sum_j n_j$; if type $i$ comes up next, there will be ${\bf n}-{\bf e}_i$ remaining cards; and if the guess was $j$, then the change in score is $\delta_{i,j}$. So we can say that the expected score with best play satisfies $$ S({\bf n})=\min_j\left(\sum_i p_i({\bf n})\left[\delta_{i,j}+S({\bf n}-{\bf e}_i)\right]\right)=\min_j\left(p_j({\bf n}) + \sum_i p_i({\bf n})S({\bf n}-{\bf e}_i)\right) $$ if you're trying to minimize your score, and $$ T({\bf n})=\max_j\left(p_j({\bf n}) + \sum_i p_i({\bf n})T({\bf n}-{\bf e}_i)\right) $$ if you're trying to maximize it. Python code to compute the result is as follows:
Switching 'min' to 'max' yields $T$ instead. We find that $S((5,5,5,5,5))=\frac{2048941091}{892371480}\approx 2.296063,$ and $T((5,5,5,5,5))=\frac{23148348523}{2677114440}$ $\approx 8.646753.$