mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-12-25 14:28:58 +00:00
fmt code
This commit is contained in:
parent
ce4694ad30
commit
dc16c5b6c7
@ -83,7 +83,7 @@ func topoSort(m map[string][]string) []string {
|
|||||||
}
|
}
|
||||||
var keys []string
|
var keys []string
|
||||||
for key := range m {
|
for key := range m {
|
||||||
keys = append(keys, key)
|
keys = append(keys, key)
|
||||||
}
|
}
|
||||||
sort.Strings(keys)
|
sort.Strings(keys)
|
||||||
visitAll(keys)
|
visitAll(keys)
|
||||||
|
Loading…
Reference in New Issue
Block a user