Browse Source

Reorder imports

content-update
Xavier Petit 4 years ago committed by xpetit
parent
commit
2400d4c622
  1. 4
      tests/go/test_btreelevelcount.go
  2. 4
      tests/go/test_btreemax.go
  3. 4
      tests/go/test_btreemin.go
  4. 4
      tests/go/test_pointone.go
  5. 3
      tests/go/test_ultimatedivmod.go
  6. 3
      tests/go/test_ultimatepointone.go

4
tests/go/test_btreelevelcount.go

@ -3,10 +3,10 @@ package main
import (
"reflect"
"github.com/01-edu/z01"
correct "./correct"
student "./student"
"github.com/01-edu/z01"
)
func errorMessage_level(fn interface{}, root, a *correct.TreeNode, b *student.TreeNode) {

4
tests/go/test_btreemax.go

@ -3,10 +3,10 @@ package main
import (
"reflect"
"github.com/01-edu/z01"
correct "./correct"
student "./student"
"github.com/01-edu/z01"
)
func errorMessage_max(fn interface{}, root, a *correct.TreeNode, b *student.TreeNode) {

4
tests/go/test_btreemin.go

@ -3,10 +3,10 @@ package main
import (
"reflect"
"github.com/01-edu/z01"
correct "./correct"
student "./student"
"github.com/01-edu/z01"
)
func errorMessage_min(fn interface{}, root, a *correct.TreeNode, b *student.TreeNode) {

4
tests/go/test_pointone.go

@ -1,9 +1,9 @@
package main
import (
student "./student"
"github.com/01-edu/z01"
student "./student"
)
func main() {

3
tests/go/test_ultimatedivmod.go

@ -1,8 +1,9 @@
package main
import (
student "./student"
"github.com/01-edu/z01"
student "./student"
)
func main() {

3
tests/go/test_ultimatepointone.go

@ -1,8 +1,9 @@
package main
import (
student "./student"
"github.com/01-edu/z01"
student "./student"
)
func main() {

Loading…
Cancel
Save