Skip to content

Commit

Permalink
day 292: remove logging statement
Browse files Browse the repository at this point in the history
  • Loading branch information
vaskoz committed Jun 24, 2019
1 parent 407ad6c commit 3834c4c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions day292/problem.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package day292

import (
"errors"
"log"
"sort"
)

Expand All @@ -27,7 +26,6 @@ func AssignTeams(enemies map[int]map[int]struct{}) ([]int, []int, error) {
break
}
for len(q) != 0 {
log.Println(q, team1, team2)
var nextQ []int
var countNew int
for _, id := range q {
Expand Down

0 comments on commit 3834c4c

Please sign in to comment.