We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 528f72a commit e770c8dCopy full SHA for e770c8d
output/table.go
@@ -110,9 +110,6 @@ func (t *Table) Render() string {
110
for x := range average {
111
average[x] = average[x] / count[x]
112
}
113
- // fmt.Println("COUNT:", count)
114
- // fmt.Println("MAX :", widths)
115
- // fmt.Println("AVG :", average)
116
variance := make([]int, t.columnsCount)
117
for _, row := range t.rows {
118
for x, cell := range row.cells {
@@ -127,7 +124,6 @@ func (t *Table) Render() string {
127
124
for x := range variance {
128
125
variance[x] = int(math.Sqrt(float64(variance[x] / count[x])))
129
126
130
- // fmt.Println("VAR :", variance)
131
132
res := ""
133
0 commit comments