If you would notice, in every row the set of first and second elements
together is unique. For e.g. the first row has (1, 3) and the second
row has (1, 2).
Now I want to retrieve a specific row based on this given combination
of first and second element. How do I do it?
How do you do it?
(let ((f 1)
(s 4))
(find-if (lambda (row) (and (equal f (first row)) (equal s (second row))))
*possible-die-combinations*))
--
__Pascal Bourguignon__