Skip to content

Commit 900fbad

Browse files
committed
works yipe
1 parent 307e0b8 commit 900fbad

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

llvmjwtamqp.png

3.47 KB
Loading

main.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -675,8 +675,8 @@ func main() {
675675
//teamData := widget.NewTextGridFromString("LLVM REFERENCE\nJWTAUTH")
676676
//teamDataMedians := widget.NewTextGridFromString("LLVM REFERENCE\nJWTAUTH")
677677
currentAverages := [3][]string{}
678-
matchDatas := [19][]string{}
679-
for i := 0; i < 19; i++ {
678+
matchDatas := [25][]string{}
679+
for i := 0; i < 25; i++ {
680680
matchDatas[i] = make([]string, 24)
681681
}
682682
for i := 0; i < 3; i++ {
@@ -854,9 +854,10 @@ func main() {
854854
//tcpa = append(tcpa, teamName...)
855855
//kTeamNumberVData[teamName[1]] = append(kTeamNumberVData[teamName[1]], tcpa)
856856

857-
matchDatas[(ind*3)+1] = avg
858-
matchDatas[ind*3+2] = media
859-
matchDatas[ind*3+3] = performance
857+
matchDatas[(ind*4)+1] = avg
858+
matchDatas[ind*4+2] = media
859+
matchDatas[ind*4+3] = performance
860+
matchDatas[ind*4+4] = make([]string, 25)
860861
matchDatas[0] = []string{"ID", "TeamName", "TeamNumber", "Match", "AutoAmps", "AutoSpeaker", "AutoLeave", "AutoMiddle", "TeleopAmps", "TeleopSpeaker", "Chain", "Harmony", "Trap", "Park", "Ground", "Feeder", "Mobility", "Penalities", "Tech-Pens", "Ground-Pick", "Starting-Pos", "Defense", "CenterRing", "Notes"}
861862
for k, v := range matchDatas {
862863
fmt.Println(k, v)

0 commit comments

Comments
 (0)