Last Computed 2/28/2018
This program calculates the sum of ranks by first name for all single and average events. Example: for Daniel, in each event the rank is taken from the best ranked Daniel and added up to compare to other names.
- every result is on 2 rows of the table
- Rank = ranking in list
- First Name / sor = First name on the first row, sum of ranks on the second row
- each event = last name of competitor w/ link to WCA Profile, competitor's World Rank in the event.
- results/ResultsS.md Results of Single SORs
- results/ResultsA.md Results of Average SORs
- Makefile $make compiles code $make run compiles and runs the all the files $make clean cleans the code
- src/SumOfRanksS.cpp source code for calculating the Single sor per person.
- src/SumOfRanksA.cpp source code for calculating the Average sor per person.
- resources/queries.sql Queries used to obtain the other resources files
- resources/RanksS.txt data extracted from query 1
- resources/WorstRanksS.txt data extracted from query 2
- resources/RanksA.txt data extracted from query 3
- resources/WorstRanksA.txt data extracted from query 4
- bin/* compiled code