I'm very new to Godot and pretty new to coding
If I have an array of X number of teams and i want each team to have Y matches with no duplicate pairings, how do I go about that in GDscript? I already have the code for the matches, given the array indexes. I just need to know how to keep the pairings unique while looping through the array.
I'm not sure that its strictly round robin since I dont need every team to face off against every other team, just for each matchup to be unique. I've found some possible solutions in Java and C# but I'm having trouble getting my head around it
Thanks