small update, code cleaned

This commit is contained in:
arnaucode
2017-04-21 10:21:17 +02:00
parent 2e1d99c387
commit 55f58e2914
10 changed files with 7 additions and 13 deletions

View File

@@ -22,7 +22,6 @@ func printSortedMapStringInt(m map[string]int, threshold int) map[int][]string {
sort.Sort(sort.Reverse(sort.IntSlice(a)))
for _, k := range a {
for _, s := range n[k] {
//fmt.Printf("%d (%d)- %s,\n", k, tantPerCent, s)
fmt.Println(strconv.Itoa(k) + " - " + s)
}
}