The tournament tag refers to any tournament style program. Only use when the question directly relates to programming tournament style programs.
Questions tagged [tournament]
112 questions
0
votes
1 answer
AlgoExpert Question, Tournament Winner, Not passing all test cases
Tournament Winner: There's an algorithms tournament taking place in which teams of programmers compete against each other to solve algorithmic problems as fast as possible. Teams compete in a round robin, where each team faces off against all other…

Jessica Boyle
- 33
- 2
0
votes
1 answer
Is there a way to somewhat automate a Double Elimination bracket on google sheets?
I'm looking for some help in trying to automate a double elimination bracket that I created on Google sheets. I won't pretend to know much about it. I'm mostly self taught on anything when it comes to sheets and I know that it requires an if/then…

David Reyes
- 1
- 1
0
votes
2 answers
Excel using python, do all users require python?
I'm interested in creating a tournament template in excel using python, but I don't expect all my users to have python installed. Is there a way to achieve this? Or is there some other easy-to-use gui that would be suitable for something like this?…

Jahlove
- 65
- 9
0
votes
1 answer
Algorithm for generate single elimination round from previous groups phase
My tournament has two stages, groups + single elimination. When the groups stage ends, the x top of each group go to single elimination stage (brackets format). In the brackets stage there are two basics rules:
a winner of a group should not be…

aprencai
- 396
- 2
- 10
0
votes
0 answers
Generate tournament program python
I am trying to create a match program with 4 fields. There will be 4 games going on at the same time, one at each fields.
A team will never play 2 matches in a row - and can not play at the same time on multiple fields.
With 32 matches and 4…

Erik Nilsen
- 21
- 1
- 7
0
votes
2 answers
How can I derive the winners of a match from a table of games that relate to a table of matches?
In a database that stores tournaments I have this relational structure to store matches and their games:
EER Diagram
When a match is created, a match row and multiple game rows are inserted corresponding to the number of games in the match.…

Desuse
- 15
- 3
0
votes
1 answer
Sports tournament schedule with changing pairs
Lets imagine there are 8 players attending to beach volley event.
Matches are played 2 vs 2.
As organiser i want to generate schedule for players with the following rules:
each player plays together with everyone (7 matches for each player)
each…

Hese
- 291
- 5
- 18
0
votes
1 answer
How to create this round robin chess tournament generator
I have list of players and want to create a round robin generator for chess tournaments with JavaScript.
The round robin should be like in this image, shown for 10 teams and 6 teams:
I tried to create separate logic for even and odd round numbers,…

Sermed mayi
- 697
- 7
- 26
0
votes
1 answer
C++: Best way to pass a vector into a constructor to create a member variable?
This question is a bit more deceiving than it looks so let me explain.
Suppose I have a class Tournament. One of the member variables is a vector of Player pointers.
class Tournament{
public:
vector > playersInTournament;
…
0
votes
1 answer
If the start button is clicked, it will not proceed
I want to make an application to find the ideal type of tournament. The code below is a function that starts when you press the Start button. 'choice1' and 'choice2' are boolean that becomes true when each image button is pressed. When the Start…

mmmgod
- 3
- 2
0
votes
1 answer
How do I make a round robin match schedule?
I am building a tournament schedule with round robin style match order. I have an algorithm set up to build the matches, however the match order is not what I am looking for. I am struggling to develop an algorithm that will build the matches in my…

BPierce
- 53
- 5
0
votes
2 answers
Tournament Selection Average Fitness not increasing?
I am trying to implement a genetic tournament selection algorithm, where the fitness of the population on average goes up, but my average fitness isn't changing.
I would appreciate if anyone could take a look at my code and advise me on what I am…

Destaq
- 655
- 9
- 23
0
votes
1 answer
Diffrent Random String Tournament Matching on JavaScript
You need to create an Array with externally entered strings in JavaScript and print them in a 2-by-2 manner, provided that the Array in series is different. I tried this code, but Randoms are the same. Couldn't help please. And i should match the…

lithé
- 3
- 1
0
votes
1 answer
Generating matches for 5th, 7th, 9th etc. Places
I have a method that generates matches for each best of two teams from group stage.
Group A
T1───┐
│
T2───┘
├───┐
T3───┐ │ ├───T1
│ │ │
T4───┘ │ ├───T6
Group B ├───│
T5───┐ │ ├───T2
│ │ │
T6───┘ │ …

khashashin
- 1,058
- 14
- 40
0
votes
0 answers
How do I reload the bracket without recreating it?
I am using http://www.aropupu.fi/bracket/ to create brackets for a tournament website, I store the json in my database, and whenever it is modified I update the json in the database. I have another page polling the json from the database. This works…

Oscar Torres
- 71
- 1
- 10