Hi! I am designing a game theory experiment in Qualtrics. For this, participants will be selecting a number of tokens to take from a pot. The game will end once all the tokens are selected.
I’ve been building this in a ‘brute-force’ kind of way where I make many conditional branches of every possible combination of token selections. I’d like to know if there is a more efficient way to do this. Maybe something I can code in JavaScript that would sum the total number of selections so far?
Thanks in advance!