Commit 23fe5f2a authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent b471d227
......@@ -337,7 +337,7 @@ func IntSets(N int) chan []int {
// intSets generates all sets of integers in range [lo,hi)
func intSets(ch chan []int, lo, hi int) {
ch <- []int{} // ø
ch <- nil // ø
if lo < hi {
for i := lo; i < hi; i++ {
......
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