Commit e770c8d9 authored by Cristian Maglie's avatar Cristian Maglie

Removed leftovers debugs

parent 528f72a9
...@@ -110,9 +110,6 @@ func (t *Table) Render() string { ...@@ -110,9 +110,6 @@ func (t *Table) Render() string {
for x := range average { for x := range average {
average[x] = average[x] / count[x] average[x] = average[x] / count[x]
} }
// fmt.Println("COUNT:", count)
// fmt.Println("MAX :", widths)
// fmt.Println("AVG :", average)
variance := make([]int, t.columnsCount) variance := make([]int, t.columnsCount)
for _, row := range t.rows { for _, row := range t.rows {
for x, cell := range row.cells { for x, cell := range row.cells {
...@@ -127,7 +124,6 @@ func (t *Table) Render() string { ...@@ -127,7 +124,6 @@ func (t *Table) Render() string {
for x := range variance { for x := range variance {
variance[x] = int(math.Sqrt(float64(variance[x] / count[x]))) variance[x] = int(math.Sqrt(float64(variance[x] / count[x])))
} }
// fmt.Println("VAR :", variance)
res := "" res := ""
for _, row := range t.rows { for _, row := range t.rows {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment