diff --git a/go/tests-tofix/func/test_atoibase.go b/go/tests-tofix/func/test_atoibase.go index 73cdc744..19a0a3e0 100644 --- a/go/tests-tofix/func/test_atoibase.go +++ b/go/tests-tofix/func/test_atoibase.go @@ -1,9 +1,10 @@ package main import ( + student "student" + "./base" "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreeapplybylevel.go b/go/tests-tofix/func/test_btreeapplybylevel.go index 68eae5d5..e844fa89 100644 --- a/go/tests-tofix/func/test_btreeapplybylevel.go +++ b/go/tests-tofix/func/test_btreeapplybylevel.go @@ -3,8 +3,9 @@ package main import ( "fmt" + student "student" + "./correct" - "./student" ) func main() { diff --git a/go/tests-tofix/func/test_btreeapplyinorder.go b/go/tests-tofix/func/test_btreeapplyinorder.go index 279360f8..a52f1845 100644 --- a/go/tests-tofix/func/test_btreeapplyinorder.go +++ b/go/tests-tofix/func/test_btreeapplyinorder.go @@ -3,8 +3,9 @@ package main import ( "fmt" + student "student" + "./correct" - "./student" ) func main() { diff --git a/go/tests-tofix/func/test_btreeapplypostorder.go b/go/tests-tofix/func/test_btreeapplypostorder.go index 40eaf212..07c9d1e2 100644 --- a/go/tests-tofix/func/test_btreeapplypostorder.go +++ b/go/tests-tofix/func/test_btreeapplypostorder.go @@ -3,8 +3,9 @@ package main import ( "fmt" + student "student" + "./correct" - "./student" ) func main() { diff --git a/go/tests-tofix/func/test_btreeapplypreorder.go b/go/tests-tofix/func/test_btreeapplypreorder.go index 25200f0b..606bcb5e 100644 --- a/go/tests-tofix/func/test_btreeapplypreorder.go +++ b/go/tests-tofix/func/test_btreeapplypreorder.go @@ -3,8 +3,9 @@ package main import ( "fmt" + student "student" + "./correct" - "./student" ) func main() { diff --git a/go/tests-tofix/func/test_btreedeletenode.go b/go/tests-tofix/func/test_btreedeletenode.go index 118b3846..52f15e47 100644 --- a/go/tests-tofix/func/test_btreedeletenode.go +++ b/go/tests-tofix/func/test_btreedeletenode.go @@ -1,8 +1,9 @@ package main import ( + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreeinsertdata.go b/go/tests-tofix/func/test_btreeinsertdata.go index dd0efe83..d9f5f450 100644 --- a/go/tests-tofix/func/test_btreeinsertdata.go +++ b/go/tests-tofix/func/test_btreeinsertdata.go @@ -1,8 +1,9 @@ package main import ( + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreeisbinary.go b/go/tests-tofix/func/test_btreeisbinary.go index 6eb7da7b..cf959d01 100644 --- a/go/tests-tofix/func/test_btreeisbinary.go +++ b/go/tests-tofix/func/test_btreeisbinary.go @@ -3,8 +3,9 @@ package main import ( "reflect" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreelevelcount.go b/go/tests-tofix/func/test_btreelevelcount.go index 255d1928..4a29760e 100644 --- a/go/tests-tofix/func/test_btreelevelcount.go +++ b/go/tests-tofix/func/test_btreelevelcount.go @@ -3,8 +3,9 @@ package main import ( "reflect" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreemax.go b/go/tests-tofix/func/test_btreemax.go index dbe9bbb5..7143d479 100644 --- a/go/tests-tofix/func/test_btreemax.go +++ b/go/tests-tofix/func/test_btreemax.go @@ -3,8 +3,9 @@ package main import ( "reflect" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreemin.go b/go/tests-tofix/func/test_btreemin.go index ecfacfdc..5892747b 100644 --- a/go/tests-tofix/func/test_btreemin.go +++ b/go/tests-tofix/func/test_btreemin.go @@ -3,8 +3,9 @@ package main import ( "reflect" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreesearchitem.go b/go/tests-tofix/func/test_btreesearchitem.go index f364e97a..3f0b0c53 100644 --- a/go/tests-tofix/func/test_btreesearchitem.go +++ b/go/tests-tofix/func/test_btreesearchitem.go @@ -3,8 +3,9 @@ package main import ( "fmt" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_btreetransplant.go b/go/tests-tofix/func/test_btreetransplant.go index d1166086..e590ab25 100644 --- a/go/tests-tofix/func/test_btreetransplant.go +++ b/go/tests-tofix/func/test_btreetransplant.go @@ -3,8 +3,9 @@ package main import ( "fmt" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_convertbase.go b/go/tests-tofix/func/test_convertbase.go index 86465f70..b9c58240 100644 --- a/go/tests-tofix/func/test_convertbase.go +++ b/go/tests-tofix/func/test_convertbase.go @@ -1,9 +1,10 @@ package main import ( + student "student" + "./base" "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listat.go b/go/tests-tofix/func/test_listat.go index 12904b04..613cc29c 100644 --- a/go/tests-tofix/func/test_listat.go +++ b/go/tests-tofix/func/test_listat.go @@ -1,8 +1,9 @@ package main import ( + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listclear.go b/go/tests-tofix/func/test_listclear.go index 788bb7b2..427b8803 100644 --- a/go/tests-tofix/func/test_listclear.go +++ b/go/tests-tofix/func/test_listclear.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listfind.go b/go/tests-tofix/func/test_listfind.go index 03d569ff..72b6281e 100644 --- a/go/tests-tofix/func/test_listfind.go +++ b/go/tests-tofix/func/test_listfind.go @@ -1,8 +1,9 @@ package main import ( + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listforeach.go b/go/tests-tofix/func/test_listforeach.go index 723c63e7..1cb6f701 100644 --- a/go/tests-tofix/func/test_listforeach.go +++ b/go/tests-tofix/func/test_listforeach.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listforeachif.go b/go/tests-tofix/func/test_listforeachif.go index 94240193..449c7f07 100644 --- a/go/tests-tofix/func/test_listforeachif.go +++ b/go/tests-tofix/func/test_listforeachif.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listlast.go b/go/tests-tofix/func/test_listlast.go index 02d77e74..4b096205 100644 --- a/go/tests-tofix/func/test_listlast.go +++ b/go/tests-tofix/func/test_listlast.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listmerge.go b/go/tests-tofix/func/test_listmerge.go index 9616144d..72996a64 100644 --- a/go/tests-tofix/func/test_listmerge.go +++ b/go/tests-tofix/func/test_listmerge.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listpushback.go b/go/tests-tofix/func/test_listpushback.go index 9f6d13c8..fd62dcce 100644 --- a/go/tests-tofix/func/test_listpushback.go +++ b/go/tests-tofix/func/test_listpushback.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listpushfront.go b/go/tests-tofix/func/test_listpushfront.go index e2f4eda1..bc03af45 100644 --- a/go/tests-tofix/func/test_listpushfront.go +++ b/go/tests-tofix/func/test_listpushfront.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listremoveif.go b/go/tests-tofix/func/test_listremoveif.go index 72dc86d6..f100c34d 100644 --- a/go/tests-tofix/func/test_listremoveif.go +++ b/go/tests-tofix/func/test_listremoveif.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listreverse.go b/go/tests-tofix/func/test_listreverse.go index 77f2e5d3..da9f09a1 100644 --- a/go/tests-tofix/func/test_listreverse.go +++ b/go/tests-tofix/func/test_listreverse.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listsize.go b/go/tests-tofix/func/test_listsize.go index 4cd90d75..73daf4f5 100644 --- a/go/tests-tofix/func/test_listsize.go +++ b/go/tests-tofix/func/test_listsize.go @@ -1,8 +1,9 @@ package main import ( + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_listsort.go b/go/tests-tofix/func/test_listsort.go index 68f1b5f0..48a37bad 100644 --- a/go/tests-tofix/func/test_listsort.go +++ b/go/tests-tofix/func/test_listsort.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_printnbrbase.go b/go/tests-tofix/func/test_printnbrbase.go index 612ca5b7..54322a0b 100644 --- a/go/tests-tofix/func/test_printnbrbase.go +++ b/go/tests-tofix/func/test_printnbrbase.go @@ -1,9 +1,10 @@ package main import ( + student "student" + "./base" "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_sortedlistmerge.go b/go/tests-tofix/func/test_sortedlistmerge.go index 0252252e..620cc7fe 100644 --- a/go/tests-tofix/func/test_sortedlistmerge.go +++ b/go/tests-tofix/func/test_sortedlistmerge.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests-tofix/func/test_sortlistinsert.go b/go/tests-tofix/func/test_sortlistinsert.go index d1609769..9f10e92a 100644 --- a/go/tests-tofix/func/test_sortlistinsert.go +++ b/go/tests-tofix/func/test_sortlistinsert.go @@ -3,8 +3,9 @@ package main import ( "strconv" + student "student" + "./correct" - "./student" "github.com/01-edu/public/go/lib" ) diff --git a/go/tests/abort/main.go b/go/tests/abort/main.go index d181f055..c901a5d6 100644 --- a/go/tests/abort/main.go +++ b/go/tests/abort/main.go @@ -3,8 +3,9 @@ package main import ( "sort" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) // Receives 5 ints and returns the number in the middle diff --git a/go/tests/activebits/main.go b/go/tests/activebits/main.go index 0a6b2d13..19f56304 100644 --- a/go/tests/activebits/main.go +++ b/go/tests/activebits/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) // Function that return the number of active bits in the number passed as the argument diff --git a/go/tests/addprimesum/addprimesum_correct/main.go b/go/tests/addprimesum/addprimesum_correct/main.go index 7cc0d0d0..c3d83321 100644 --- a/go/tests/addprimesum/addprimesum_correct/main.go +++ b/go/tests/addprimesum/addprimesum_correct/main.go @@ -5,7 +5,7 @@ import ( "os" "strconv" - "github.com/01-edu/public/go/lib/is" + "lib/is" ) func main() { diff --git a/go/tests/addprimesum/main.go b/go/tests/addprimesum/main.go index 5f31018f..b6c7c4a9 100644 --- a/go/tests/addprimesum/main.go +++ b/go/tests/addprimesum/main.go @@ -3,8 +3,8 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + "lib" + "lib/is" ) func main() { diff --git a/go/tests/advancedsortwordarr/main.go b/go/tests/advancedsortwordarr/main.go index 652d4755..41eae7a9 100644 --- a/go/tests/advancedsortwordarr/main.go +++ b/go/tests/advancedsortwordarr/main.go @@ -5,8 +5,9 @@ import ( "sort" "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func advancedSortWordArr(a []string, f func(a, b string) int) { diff --git a/go/tests/alphacount/main.go b/go/tests/alphacount/main.go index e7d77353..2f951173 100644 --- a/go/tests/alphacount/main.go +++ b/go/tests/alphacount/main.go @@ -3,8 +3,9 @@ package main import ( "unicode" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func alphaCount(s string) (i int) { diff --git a/go/tests/alphamirror/main.go b/go/tests/alphamirror/main.go index 79ff17b8..016ded1b 100644 --- a/go/tests/alphamirror/main.go +++ b/go/tests/alphamirror/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/any/main.go b/go/tests/any/main.go index 03cf5053..e90772ec 100644 --- a/go/tests/any/main.go +++ b/go/tests/any/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func any(f func(string) bool, a []string) bool { diff --git a/go/tests/appendrange/main.go b/go/tests/appendrange/main.go index c1f2cf46..97acb73f 100644 --- a/go/tests/appendrange/main.go +++ b/go/tests/appendrange/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func appendRange(min, max int) []int { diff --git a/go/tests/atoi/main.go b/go/tests/atoi/main.go index 6cac8e08..6e3d6127 100644 --- a/go/tests/atoi/main.go +++ b/go/tests/atoi/main.go @@ -3,8 +3,9 @@ package main import ( "strconv" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func atoi(s string) int { diff --git a/go/tests/balancedstring/main.go b/go/tests/balancedstring/main.go index 1834c154..29e24fd9 100644 --- a/go/tests/balancedstring/main.go +++ b/go/tests/balancedstring/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/basicatoi/main.go b/go/tests/basicatoi/main.go index 8a7feefb..61a40280 100644 --- a/go/tests/basicatoi/main.go +++ b/go/tests/basicatoi/main.go @@ -3,8 +3,9 @@ package main import ( "strconv" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func basicAtoi(s string) int { diff --git a/go/tests/basicatoi2/main.go b/go/tests/basicatoi2/main.go index ee75aeea..3263c760 100644 --- a/go/tests/basicatoi2/main.go +++ b/go/tests/basicatoi2/main.go @@ -3,8 +3,9 @@ package main import ( "strconv" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func basicAtoi2(s string) int { diff --git a/go/tests/basicjoin/main.go b/go/tests/basicjoin/main.go index c0b1f79f..82e15c35 100644 --- a/go/tests/basicjoin/main.go +++ b/go/tests/basicjoin/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func basicJoin(elems []string) string { diff --git a/go/tests/boolean/main.go b/go/tests/boolean/main.go index adb80f73..bb79c840 100644 --- a/go/tests/boolean/main.go +++ b/go/tests/boolean/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/brackets/main.go b/go/tests/brackets/main.go index 5c6d887f..32a882e6 100644 --- a/go/tests/brackets/main.go +++ b/go/tests/brackets/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/brainfuck/main.go b/go/tests/brainfuck/main.go index 682caa55..0593302b 100644 --- a/go/tests/brainfuck/main.go +++ b/go/tests/brainfuck/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/capitalize/main.go b/go/tests/capitalize/main.go index c57c6b2a..6501097e 100644 --- a/go/tests/capitalize/main.go +++ b/go/tests/capitalize/main.go @@ -4,8 +4,9 @@ import ( "strings" "unicode" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func capitalize(s string) string { diff --git a/go/tests/chunk/main.go b/go/tests/chunk/main.go index 424dbd94..a9e4cf3d 100644 --- a/go/tests/chunk/main.go +++ b/go/tests/chunk/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func chunk(a []int, ch int) { diff --git a/go/tests/cleanstr/main.go b/go/tests/cleanstr/main.go index e8d3cba9..69c13c75 100644 --- a/go/tests/cleanstr/main.go +++ b/go/tests/cleanstr/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/collatzcountdown/main.go b/go/tests/collatzcountdown/main.go index 256e48f7..37d56b0b 100644 --- a/go/tests/collatzcountdown/main.go +++ b/go/tests/collatzcountdown/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func collatzCountdown(start int) int { diff --git a/go/tests/comcheck/main.go b/go/tests/comcheck/main.go index 322d12b4..773e95d9 100644 --- a/go/tests/comcheck/main.go +++ b/go/tests/comcheck/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/compact/main.go b/go/tests/compact/main.go index 0179fe48..4f4b35c0 100644 --- a/go/tests/compact/main.go +++ b/go/tests/compact/main.go @@ -3,8 +3,9 @@ package main import ( "reflect" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func compact(slice *[]string) int { diff --git a/go/tests/compare/main.go b/go/tests/compare/main.go index 6d5b7c2f..6a008639 100644 --- a/go/tests/compare/main.go +++ b/go/tests/compare/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/concat/main.go b/go/tests/concat/main.go index 28be36ec..9462cb63 100644 --- a/go/tests/concat/main.go +++ b/go/tests/concat/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/concatparams/main.go b/go/tests/concatparams/main.go index 84186975..65179a37 100644 --- a/go/tests/concatparams/main.go +++ b/go/tests/concatparams/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func concatParams(args []string) string { diff --git a/go/tests/costumeprofit/main.go b/go/tests/costumeprofit/main.go index 52cd541c..3b83eb33 100644 --- a/go/tests/costumeprofit/main.go +++ b/go/tests/costumeprofit/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/countdown/main.go b/go/tests/countdown/main.go index 8b74f0c6..6e7ee0a1 100644 --- a/go/tests/countdown/main.go +++ b/go/tests/countdown/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/countif/main.go b/go/tests/countif/main.go index 46e0e25d..c4fd6bc3 100644 --- a/go/tests/countif/main.go +++ b/go/tests/countif/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func countIf(f func(string) bool, a []string) int { diff --git a/go/tests/displaya/main.go b/go/tests/displaya/main.go index e9e35cd4..24e3d396 100644 --- a/go/tests/displaya/main.go +++ b/go/tests/displaya/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/displayalpham/main.go b/go/tests/displayalpham/main.go index 61b6f08d..45890835 100644 --- a/go/tests/displayalpham/main.go +++ b/go/tests/displayalpham/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/displayalrevm/main.go b/go/tests/displayalrevm/main.go index d8753c4c..5c4cf80b 100644 --- a/go/tests/displayalrevm/main.go +++ b/go/tests/displayalrevm/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/displayfirstparam/main.go b/go/tests/displayfirstparam/main.go index a7b06b9d..92e9ea3f 100644 --- a/go/tests/displayfirstparam/main.go +++ b/go/tests/displayfirstparam/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/displaylastparam/main.go b/go/tests/displaylastparam/main.go index deccee2e..4c6c223a 100644 --- a/go/tests/displaylastparam/main.go +++ b/go/tests/displaylastparam/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/displayz/main.go b/go/tests/displayz/main.go index f15a95da..79faa75e 100644 --- a/go/tests/displayz/main.go +++ b/go/tests/displayz/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/divmod/main.go b/go/tests/divmod/main.go index b2d4b59f..2289bdbf 100644 --- a/go/tests/divmod/main.go +++ b/go/tests/divmod/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/doop/main.go b/go/tests/doop/main.go index f76c05d6..af5c973e 100644 --- a/go/tests/doop/main.go +++ b/go/tests/doop/main.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/doppelganger/main.go b/go/tests/doppelganger/main.go index f220dd15..a5f75016 100644 --- a/go/tests/doppelganger/main.go +++ b/go/tests/doppelganger/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) type node struct { diff --git a/go/tests/eightqueens/main.go b/go/tests/eightqueens/main.go index 3de77767..e2b8fb22 100644 --- a/go/tests/eightqueens/main.go +++ b/go/tests/eightqueens/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) const size = 8 diff --git a/go/tests/enigma/main.go b/go/tests/enigma/main.go index 5dc4a369..279fdf7a 100644 --- a/go/tests/enigma/main.go +++ b/go/tests/enigma/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) // Helper function used in the test for checking the function Enigma() diff --git a/go/tests/expandstr/main.go b/go/tests/expandstr/main.go index cf9b2600..8a8f0a01 100644 --- a/go/tests/expandstr/main.go +++ b/go/tests/expandstr/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/fib/main.go b/go/tests/fib/main.go index 369afa60..2b0643f3 100644 --- a/go/tests/fib/main.go +++ b/go/tests/fib/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func fib(n int) int { diff --git a/go/tests/fibonacci/main.go b/go/tests/fibonacci/main.go index 4ce51bd9..8257a1c7 100644 --- a/go/tests/fibonacci/main.go +++ b/go/tests/fibonacci/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func fibonacci(i int) int { diff --git a/go/tests/findnextprime/main.go b/go/tests/findnextprime/main.go index c02e143e..315309a1 100644 --- a/go/tests/findnextprime/main.go +++ b/go/tests/findnextprime/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func findNextPrime(nb int) int { diff --git a/go/tests/findprevprime/main.go b/go/tests/findprevprime/main.go index d91b57fa..82adaf31 100644 --- a/go/tests/findprevprime/main.go +++ b/go/tests/findprevprime/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func findPrevPrime(nb int) int { diff --git a/go/tests/firstrune/main.go b/go/tests/firstrune/main.go index 39ca9433..e24a1fea 100644 --- a/go/tests/firstrune/main.go +++ b/go/tests/firstrune/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func firstRune(s string) rune { diff --git a/go/tests/firstword/main.go b/go/tests/firstword/main.go index 3f7191e9..33ff7af0 100644 --- a/go/tests/firstword/main.go +++ b/go/tests/firstword/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/fixthemain/main.go b/go/tests/fixthemain/main.go index e9caa929..c6360b23 100644 --- a/go/tests/fixthemain/main.go +++ b/go/tests/fixthemain/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/flags/main.go b/go/tests/flags/main.go index 654a8b38..d2a0aa11 100644 --- a/go/tests/flags/main.go +++ b/go/tests/flags/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) type node struct { diff --git a/go/tests/foldint/main.go b/go/tests/foldint/main.go index d88a82ed..55230b5d 100644 --- a/go/tests/foldint/main.go +++ b/go/tests/foldint/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func foldInt(f func(int, int) int, a []int, n int) { diff --git a/go/tests/foreach/main.go b/go/tests/foreach/main.go index d3263d48..f2993ccb 100644 --- a/go/tests/foreach/main.go +++ b/go/tests/foreach/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func forEach(f func(int), a []int) { diff --git a/go/tests/fprime/main.go b/go/tests/fprime/main.go index 5858d9dd..bf945214 100644 --- a/go/tests/fprime/main.go +++ b/go/tests/fprime/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/game23/main.go b/go/tests/game23/main.go index 303fde8b..dc7d73b9 100644 --- a/go/tests/game23/main.go +++ b/go/tests/game23/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func game23(a, b int) int { diff --git a/go/tests/gcd/gcd_correct/main.go b/go/tests/gcd/gcd_correct/main.go index 2e20c6a3..a541a779 100644 --- a/go/tests/gcd/gcd_correct/main.go +++ b/go/tests/gcd/gcd_correct/main.go @@ -5,7 +5,7 @@ import ( "os" "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/gcd/main.go b/go/tests/gcd/main.go index 020c68fa..e006433e 100644 --- a/go/tests/gcd/main.go +++ b/go/tests/gcd/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/grouping/main.go b/go/tests/grouping/main.go index 47b9882d..c7b8f7ae 100644 --- a/go/tests/grouping/main.go +++ b/go/tests/grouping/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func validRegExp(n int) string { diff --git a/go/tests/halfcontest/main.go b/go/tests/halfcontest/main.go index cd23a506..e4edfa5d 100644 --- a/go/tests/halfcontest/main.go +++ b/go/tests/halfcontest/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func halfContest(h1, m1, h2, m2 int) int { diff --git a/go/tests/hello/main.go b/go/tests/hello/main.go index c00a4659..bfa3a1e9 100644 --- a/go/tests/hello/main.go +++ b/go/tests/hello/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/hiddenp/main.go b/go/tests/hiddenp/main.go index 2e458a86..cea0fbb0 100644 --- a/go/tests/hiddenp/main.go +++ b/go/tests/hiddenp/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/index/main.go b/go/tests/index/main.go index e2844626..cb5982eb 100644 --- a/go/tests/index/main.go +++ b/go/tests/index/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func index(s string, substr string) int { diff --git a/go/tests/inter/main.go b/go/tests/inter/main.go index b3611b58..e01193a0 100644 --- a/go/tests/inter/main.go +++ b/go/tests/inter/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/interestingnumber/main.go b/go/tests/interestingnumber/main.go index 72840b57..f0cbaf40 100644 --- a/go/tests/interestingnumber/main.go +++ b/go/tests/interestingnumber/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func isInteresting(n int) bool { diff --git a/go/tests/isalpha/main.go b/go/tests/isalpha/main.go index 828fb26a..d7bf3b33 100644 --- a/go/tests/isalpha/main.go +++ b/go/tests/isalpha/main.go @@ -3,8 +3,9 @@ package main import ( "unicode" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func isAlpha(s string) bool { diff --git a/go/tests/isanagram/main.go b/go/tests/isanagram/main.go index 6e483b72..dd812372 100644 --- a/go/tests/isanagram/main.go +++ b/go/tests/isanagram/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func isAnagram(s, t string) bool { diff --git a/go/tests/islower/main.go b/go/tests/islower/main.go index 46e3519b..3171ad73 100644 --- a/go/tests/islower/main.go +++ b/go/tests/islower/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func main() { diff --git a/go/tests/isnegative/main.go b/go/tests/isnegative/main.go index f9152013..fb2cfe1d 100644 --- a/go/tests/isnegative/main.go +++ b/go/tests/isnegative/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func isNegative(n int) { diff --git a/go/tests/isnumeric/main.go b/go/tests/isnumeric/main.go index 7cec8382..1317dc2a 100644 --- a/go/tests/isnumeric/main.go +++ b/go/tests/isnumeric/main.go @@ -3,9 +3,10 @@ package main import ( "strconv" - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func main() { diff --git a/go/tests/ispowerof2/main.go b/go/tests/ispowerof2/main.go index a3a8d8bf..f031cbf1 100644 --- a/go/tests/ispowerof2/main.go +++ b/go/tests/ispowerof2/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/isprime/main.go b/go/tests/isprime/main.go index f14c2c3d..3b8a4ec3 100644 --- a/go/tests/isprime/main.go +++ b/go/tests/isprime/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func main() { diff --git a/go/tests/isprintable/main.go b/go/tests/isprintable/main.go index 37aa2b33..192e031e 100644 --- a/go/tests/isprintable/main.go +++ b/go/tests/isprintable/main.go @@ -4,8 +4,9 @@ import ( "math/rand" "unicode" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func isPrintable(s string) bool { diff --git a/go/tests/issorted/main.go b/go/tests/issorted/main.go index c5a75051..ba82a08a 100644 --- a/go/tests/issorted/main.go +++ b/go/tests/issorted/main.go @@ -3,8 +3,9 @@ package main import ( "sort" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func isSorted(f func(int, int) int, a []int) bool { diff --git a/go/tests/isupper/main.go b/go/tests/isupper/main.go index 7cb29942..a49657c5 100644 --- a/go/tests/isupper/main.go +++ b/go/tests/isupper/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func main() { diff --git a/go/tests/iterativefactorial/main.go b/go/tests/iterativefactorial/main.go index 59821d07..997f7853 100644 --- a/go/tests/iterativefactorial/main.go +++ b/go/tests/iterativefactorial/main.go @@ -3,8 +3,9 @@ package main import ( "math/bits" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func iterativeFactorial(nb int) int { diff --git a/go/tests/iterativepower/main.go b/go/tests/iterativepower/main.go index d332fb82..499d5411 100644 --- a/go/tests/iterativepower/main.go +++ b/go/tests/iterativepower/main.go @@ -3,8 +3,9 @@ package main import ( "math" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func iterativePower(nb int, power int) int { diff --git a/go/tests/itoa/main.go b/go/tests/itoa/main.go index 5a8fc2d9..c068be98 100644 --- a/go/tests/itoa/main.go +++ b/go/tests/itoa/main.go @@ -3,8 +3,9 @@ package main import ( "strconv" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/itoabase/main.go b/go/tests/itoabase/main.go index 490bcf67..67b0f78a 100644 --- a/go/tests/itoabase/main.go +++ b/go/tests/itoabase/main.go @@ -4,8 +4,9 @@ import ( "strconv" "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func itoaBase(value, base int) string { diff --git a/go/tests/join/main.go b/go/tests/join/main.go index 8d3efc31..2c2663b3 100644 --- a/go/tests/join/main.go +++ b/go/tests/join/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func join(elems []string, sep string) string { diff --git a/go/tests/lastrune/main.go b/go/tests/lastrune/main.go index 1d35bb99..ab4d1cbe 100644 --- a/go/tests/lastrune/main.go +++ b/go/tests/lastrune/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func lastRune(s string) rune { diff --git a/go/tests/lastword/main.go b/go/tests/lastword/main.go index 797ee916..04303e61 100644 --- a/go/tests/lastword/main.go +++ b/go/tests/lastword/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/lcm/main.go b/go/tests/lcm/main.go index 1961680d..3f1997ad 100644 --- a/go/tests/lcm/main.go +++ b/go/tests/lcm/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func gcd(first, second int) int { diff --git a/go/tests/makerange/main.go b/go/tests/makerange/main.go index 03d03ea7..208ac2a5 100644 --- a/go/tests/makerange/main.go +++ b/go/tests/makerange/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func makeRange(min, max int) []int { diff --git a/go/tests/map/main.go b/go/tests/map/main.go index f42a6628..000751df 100644 --- a/go/tests/map/main.go +++ b/go/tests/map/main.go @@ -1,9 +1,10 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" - "github.com/01-edu/public/go/lib/is" + student "student" + + "lib" + "lib/is" ) func isPositive(i int) bool { diff --git a/go/tests/max/main.go b/go/tests/max/main.go index ac62ab0b..ec279f47 100644 --- a/go/tests/max/main.go +++ b/go/tests/max/main.go @@ -3,8 +3,9 @@ package main import ( "sort" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func max(a []int) int { diff --git a/go/tests/nauuo/main.go b/go/tests/nauuo/main.go index c6e518e7..7490289d 100644 --- a/go/tests/nauuo/main.go +++ b/go/tests/nauuo/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func nauuo(plus, minus, rand int) string { diff --git a/go/tests/nbrconvertalpha/main.go b/go/tests/nbrconvertalpha/main.go index 658a2a35..7f740e87 100644 --- a/go/tests/nbrconvertalpha/main.go +++ b/go/tests/nbrconvertalpha/main.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/nenokku/main.go b/go/tests/nenokku/main.go index 0ca34a21..82efba19 100644 --- a/go/tests/nenokku/main.go +++ b/go/tests/nenokku/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/nrune/main.go b/go/tests/nrune/main.go index 21a143e8..c637825c 100644 --- a/go/tests/nrune/main.go +++ b/go/tests/nrune/main.go @@ -3,8 +3,9 @@ package main import ( "math/rand" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func nRune(s string, n int) rune { diff --git a/go/tests/onlya/main.go b/go/tests/onlya/main.go index 11ba9ace..0a10fa5e 100644 --- a/go/tests/onlya/main.go +++ b/go/tests/onlya/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/onlyz/main.go b/go/tests/onlyz/main.go index d4e900a8..f5797dd8 100644 --- a/go/tests/onlyz/main.go +++ b/go/tests/onlyz/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/options/main.go b/go/tests/options/main.go index 60856ba1..7985bf86 100644 --- a/go/tests/options/main.go +++ b/go/tests/options/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/paramcount/main.go b/go/tests/paramcount/main.go index 5043854b..a1475aeb 100644 --- a/go/tests/paramcount/main.go +++ b/go/tests/paramcount/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/piglatin/main.go b/go/tests/piglatin/main.go index ecdfebf0..9ff757ef 100644 --- a/go/tests/piglatin/main.go +++ b/go/tests/piglatin/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/point/main.go b/go/tests/point/main.go index 8b325ccd..20d28f6d 100644 --- a/go/tests/point/main.go +++ b/go/tests/point/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/pointone/main.go b/go/tests/pointone/main.go index aa723d4b..189d2b72 100644 --- a/go/tests/pointone/main.go +++ b/go/tests/pointone/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func PointOne(n *int) { diff --git a/go/tests/printalphabet/main.go b/go/tests/printalphabet/main.go index 2014b88d..a41585f3 100644 --- a/go/tests/printalphabet/main.go +++ b/go/tests/printalphabet/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printbits/main.go b/go/tests/printbits/main.go index baf4a454..dfb2db8a 100644 --- a/go/tests/printbits/main.go +++ b/go/tests/printbits/main.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printchessboard/main.go b/go/tests/printchessboard/main.go index 6cfac0da..b8dade65 100644 --- a/go/tests/printchessboard/main.go +++ b/go/tests/printchessboard/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printcomb/main.go b/go/tests/printcomb/main.go index 026ea396..4f12ff8f 100644 --- a/go/tests/printcomb/main.go +++ b/go/tests/printcomb/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func printComb() { diff --git a/go/tests/printcomb2/main.go b/go/tests/printcomb2/main.go index de1602da..69223d99 100644 --- a/go/tests/printcomb2/main.go +++ b/go/tests/printcomb2/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func printComb2() { diff --git a/go/tests/printcombn/main.go b/go/tests/printcombn/main.go index 3f8dbceb..23311c1a 100644 --- a/go/tests/printcombn/main.go +++ b/go/tests/printcombn/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func show(n int, table [9]int, tmax [9]int) { diff --git a/go/tests/printdigits/main.go b/go/tests/printdigits/main.go index 7426a4c5..d65299b5 100644 --- a/go/tests/printdigits/main.go +++ b/go/tests/printdigits/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printhex/main.go b/go/tests/printhex/main.go index 6599aa3e..86c1fcc3 100644 --- a/go/tests/printhex/main.go +++ b/go/tests/printhex/main.go @@ -4,7 +4,7 @@ import ( "strconv" "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printmemory/main.go b/go/tests/printmemory/main.go index 27a3b8ee..a42af4a9 100644 --- a/go/tests/printmemory/main.go +++ b/go/tests/printmemory/main.go @@ -4,8 +4,9 @@ import ( "fmt" "unicode" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func printBase(nbr int) int { diff --git a/go/tests/printnbr/main.go b/go/tests/printnbr/main.go index 277be00c..d8f92935 100644 --- a/go/tests/printnbr/main.go +++ b/go/tests/printnbr/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/printnbrinorder/main.go b/go/tests/printnbrinorder/main.go index 449145a0..986fd1f0 100644 --- a/go/tests/printnbrinorder/main.go +++ b/go/tests/printnbrinorder/main.go @@ -4,8 +4,9 @@ import ( "fmt" "sort" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func intToDigits(n int) (digits []int) { diff --git a/go/tests/printparams/main.go b/go/tests/printparams/main.go index 4a154203..f82e48c4 100644 --- a/go/tests/printparams/main.go +++ b/go/tests/printparams/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printprogramname/main.go b/go/tests/printprogramname/main.go index 6c508e25..7b436cf2 100644 --- a/go/tests/printprogramname/main.go +++ b/go/tests/printprogramname/main.go @@ -4,7 +4,7 @@ import ( "os" "os/exec" - "github.com/01-edu/public/go/lib" + "lib" ) var name = "student" diff --git a/go/tests/printrevcomb/main.go b/go/tests/printrevcomb/main.go index 868803b4..8a0d9312 100644 --- a/go/tests/printrevcomb/main.go +++ b/go/tests/printrevcomb/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printreversealphabet/main.go b/go/tests/printreversealphabet/main.go index b9a5cc4d..ac7f686d 100644 --- a/go/tests/printreversealphabet/main.go +++ b/go/tests/printreversealphabet/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/printstr/main.go b/go/tests/printstr/main.go index 2112ac56..cc59ddf7 100644 --- a/go/tests/printstr/main.go +++ b/go/tests/printstr/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/printwordstables/main.go b/go/tests/printwordstables/main.go index f9466150..f74a2382 100644 --- a/go/tests/printwordstables/main.go +++ b/go/tests/printwordstables/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func printWordsTables(a []string) { diff --git a/go/tests/priorprime/main.go b/go/tests/priorprime/main.go index 33f699eb..f7b74c4e 100644 --- a/go/tests/priorprime/main.go +++ b/go/tests/priorprime/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func priorPrime(x int) int { diff --git a/go/tests/raid1a/main.go b/go/tests/raid1a/main.go index dc6ed530..7c2f220f 100644 --- a/go/tests/raid1a/main.go +++ b/go/tests/raid1a/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func drawLine(x int, s string) { diff --git a/go/tests/raid1b/main.go b/go/tests/raid1b/main.go index d9001bbf..966ed6b6 100644 --- a/go/tests/raid1b/main.go +++ b/go/tests/raid1b/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func drawLineRaid1b(x int, s string) { diff --git a/go/tests/raid1c/main.go b/go/tests/raid1c/main.go index 556d07a0..7e948335 100644 --- a/go/tests/raid1c/main.go +++ b/go/tests/raid1c/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func drawLineRaid1c(x int, s string) { diff --git a/go/tests/raid1d/main.go b/go/tests/raid1d/main.go index 9fb10cab..589ba7c3 100644 --- a/go/tests/raid1d/main.go +++ b/go/tests/raid1d/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func drawLineRaid1d(x int, s string) { diff --git a/go/tests/raid1e/main.go b/go/tests/raid1e/main.go index a85c97cd..5c80c3f3 100644 --- a/go/tests/raid1e/main.go +++ b/go/tests/raid1e/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func drawLineRaid1e(x int, s string) { diff --git a/go/tests/raid2/main.go b/go/tests/raid2/main.go index a4c5f646..cbcde7d6 100644 --- a/go/tests/raid2/main.go +++ b/go/tests/raid2/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/range/main.go b/go/tests/range/main.go index 2939dbb0..91d5ce88 100644 --- a/go/tests/range/main.go +++ b/go/tests/range/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/range/range_correct/main.go b/go/tests/range/range_correct/main.go index 1ec42854..b035d6ae 100644 --- a/go/tests/range/range_correct/main.go +++ b/go/tests/range/range_correct/main.go @@ -5,7 +5,7 @@ import ( "os" "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/reachablenumber/main.go b/go/tests/reachablenumber/main.go index 10773f77..4cc6504b 100644 --- a/go/tests/reachablenumber/main.go +++ b/go/tests/reachablenumber/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func reachableNumber(n int) int { diff --git a/go/tests/rectangle/main.go b/go/tests/rectangle/main.go index a0522ad6..d5bab90f 100644 --- a/go/tests/rectangle/main.go +++ b/go/tests/rectangle/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/recursivefactorial/main.go b/go/tests/recursivefactorial/main.go index be19122e..aa158f15 100644 --- a/go/tests/recursivefactorial/main.go +++ b/go/tests/recursivefactorial/main.go @@ -3,8 +3,9 @@ package main import ( "math/bits" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func recursiveFactorial(nb int) int { diff --git a/go/tests/recursivepower/main.go b/go/tests/recursivepower/main.go index feba2414..79cb6b86 100644 --- a/go/tests/recursivepower/main.go +++ b/go/tests/recursivepower/main.go @@ -3,8 +3,9 @@ package main import ( "math" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func recursivePower(nb, power int) int { diff --git a/go/tests/reduceint/main.go b/go/tests/reduceint/main.go index efe712a0..84a45337 100644 --- a/go/tests/reduceint/main.go +++ b/go/tests/reduceint/main.go @@ -3,8 +3,9 @@ package main import ( "fmt" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func reduceInt(a []int, f func(int, int) int) { diff --git a/go/tests/repeatalpha/main.go b/go/tests/repeatalpha/main.go index 9193f5de..2e6f456e 100644 --- a/go/tests/repeatalpha/main.go +++ b/go/tests/repeatalpha/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/reversebits/main.go b/go/tests/reversebits/main.go index 351c5977..b5b723a5 100644 --- a/go/tests/reversebits/main.go +++ b/go/tests/reversebits/main.go @@ -4,8 +4,9 @@ import ( "math/bits" "reflect" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func reverseBits(octet byte) byte { diff --git a/go/tests/reverserange/main.go b/go/tests/reverserange/main.go index b23126b0..aaf128cc 100644 --- a/go/tests/reverserange/main.go +++ b/go/tests/reverserange/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/reverserange/reverserange_correct/main.go b/go/tests/reverserange/reverserange_correct/main.go index 1ec42854..b035d6ae 100644 --- a/go/tests/reverserange/reverserange_correct/main.go +++ b/go/tests/reverserange/reverserange_correct/main.go @@ -5,7 +5,7 @@ import ( "os" "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/reversestrcap/main.go b/go/tests/reversestrcap/main.go index b92370eb..5d45f203 100644 --- a/go/tests/reversestrcap/main.go +++ b/go/tests/reversestrcap/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/revivethreenums/main.go b/go/tests/revivethreenums/main.go index 57fb038e..757f5b03 100644 --- a/go/tests/revivethreenums/main.go +++ b/go/tests/revivethreenums/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func max(ints ...int) int { diff --git a/go/tests/revparams/main.go b/go/tests/revparams/main.go index 413c78cb..5291006f 100644 --- a/go/tests/revparams/main.go +++ b/go/tests/revparams/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/revwstr/main.go b/go/tests/revwstr/main.go index f0f54aed..45b96625 100644 --- a/go/tests/revwstr/main.go +++ b/go/tests/revwstr/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/robottoorigin/main.go b/go/tests/robottoorigin/main.go index 794c7db3..48951f02 100644 --- a/go/tests/robottoorigin/main.go +++ b/go/tests/robottoorigin/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/romannumbers/main.go b/go/tests/romannumbers/main.go index 5eb88aa7..e2040467 100644 --- a/go/tests/romannumbers/main.go +++ b/go/tests/romannumbers/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/rostring/main.go b/go/tests/rostring/main.go index 2604786d..8b731471 100644 --- a/go/tests/rostring/main.go +++ b/go/tests/rostring/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/rot13/main.go b/go/tests/rot13/main.go index c2aee3f0..756de72a 100644 --- a/go/tests/rot13/main.go +++ b/go/tests/rot13/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/rot14/main.go b/go/tests/rot14/main.go index b3aeae27..6509423d 100644 --- a/go/tests/rot14/main.go +++ b/go/tests/rot14/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func rot14(s string) (result string) { diff --git a/go/tests/rotatevowels/main.go b/go/tests/rotatevowels/main.go index e7d3f775..c2518fd6 100644 --- a/go/tests/rotatevowels/main.go +++ b/go/tests/rotatevowels/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/rpncalc/main.go b/go/tests/rpncalc/main.go index 1458cf12..eac59de6 100644 --- a/go/tests/rpncalc/main.go +++ b/go/tests/rpncalc/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/searchreplace/main.go b/go/tests/searchreplace/main.go index 4dcae8aa..d6eb9578 100644 --- a/go/tests/searchreplace/main.go +++ b/go/tests/searchreplace/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/slice/main.go b/go/tests/slice/main.go index 0e9c5a82..a685ab28 100644 --- a/go/tests/slice/main.go +++ b/go/tests/slice/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func ifNegative(a []string, n int) int { diff --git a/go/tests/sortintegertable/main.go b/go/tests/sortintegertable/main.go index 9eb8c410..d3c9c444 100644 --- a/go/tests/sortintegertable/main.go +++ b/go/tests/sortintegertable/main.go @@ -4,8 +4,9 @@ import ( "reflect" "sort" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func sortIntegerTable(a []int) { diff --git a/go/tests/sortparams/main.go b/go/tests/sortparams/main.go index 8b663fc6..0b4c31a4 100644 --- a/go/tests/sortparams/main.go +++ b/go/tests/sortparams/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/sortwordarr/main.go b/go/tests/sortwordarr/main.go index 906dfac0..d7baf0f9 100644 --- a/go/tests/sortwordarr/main.go +++ b/go/tests/sortwordarr/main.go @@ -4,8 +4,9 @@ import ( "reflect" "sort" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/split/main.go b/go/tests/split/main.go index 05503585..fc27ea98 100644 --- a/go/tests/split/main.go +++ b/go/tests/split/main.go @@ -4,8 +4,9 @@ import ( "math/rand" "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/splitwhitespaces/main.go b/go/tests/splitwhitespaces/main.go index d7783e9f..93c584e4 100644 --- a/go/tests/splitwhitespaces/main.go +++ b/go/tests/splitwhitespaces/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/sqrt/main.go b/go/tests/sqrt/main.go index 6c80ef53..58dbce64 100644 --- a/go/tests/sqrt/main.go +++ b/go/tests/sqrt/main.go @@ -3,8 +3,9 @@ package main import ( "math" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func sqrt(value int) int { diff --git a/go/tests/strlen/main.go b/go/tests/strlen/main.go index ce948684..b4ea6ee6 100644 --- a/go/tests/strlen/main.go +++ b/go/tests/strlen/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func strLen(s string) int { diff --git a/go/tests/strrev/main.go b/go/tests/strrev/main.go index ae8557c8..60a7528e 100644 --- a/go/tests/strrev/main.go +++ b/go/tests/strrev/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func strRev(s string) string { diff --git a/go/tests/swap/main.go b/go/tests/swap/main.go index bdb67c08..250ab12e 100644 --- a/go/tests/swap/main.go +++ b/go/tests/swap/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/swapbits/main.go b/go/tests/swapbits/main.go index af7ae8a3..d18310c3 100644 --- a/go/tests/swapbits/main.go +++ b/go/tests/swapbits/main.go @@ -3,8 +3,9 @@ package main import ( "reflect" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func swapBits(n byte) byte { diff --git a/go/tests/sweetproblem/main.go b/go/tests/sweetproblem/main.go index 0b6d8dc2..a3bdde59 100644 --- a/go/tests/sweetproblem/main.go +++ b/go/tests/sweetproblem/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func min3(a, b, c int) int { diff --git a/go/tests/switchcase/main.go b/go/tests/switchcase/main.go index 92539970..572638c0 100644 --- a/go/tests/switchcase/main.go +++ b/go/tests/switchcase/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/tabmult/main.go b/go/tests/tabmult/main.go index 9c899496..aa75119c 100644 --- a/go/tests/tabmult/main.go +++ b/go/tests/tabmult/main.go @@ -3,7 +3,7 @@ package main import ( "strconv" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/tetrisoptimizer/main.go b/go/tests/tetrisoptimizer/main.go index f518c800..8218f833 100644 --- a/go/tests/tetrisoptimizer/main.go +++ b/go/tests/tetrisoptimizer/main.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "github.com/01-edu/public/go/lib" + "lib" ) type ( diff --git a/go/tests/tolower/main.go b/go/tests/tolower/main.go index ea6879c0..dc06f31f 100644 --- a/go/tests/tolower/main.go +++ b/go/tests/tolower/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/toupper/main.go b/go/tests/toupper/main.go index c136c194..538e776e 100644 --- a/go/tests/toupper/main.go +++ b/go/tests/toupper/main.go @@ -3,8 +3,9 @@ package main import ( "strings" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/trimatoi/main.go b/go/tests/trimatoi/main.go index a4c1215b..be791ffa 100644 --- a/go/tests/trimatoi/main.go +++ b/go/tests/trimatoi/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func trimAtoi(s string) int { diff --git a/go/tests/twosum/main.go b/go/tests/twosum/main.go index 69b0379b..491018a1 100644 --- a/go/tests/twosum/main.go +++ b/go/tests/twosum/main.go @@ -3,8 +3,9 @@ package main import ( "math/rand" - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func twoSum(nums []int, target int) []int { diff --git a/go/tests/ultimatedivmod/main.go b/go/tests/ultimatedivmod/main.go index 52222380..ee5ad335 100644 --- a/go/tests/ultimatedivmod/main.go +++ b/go/tests/ultimatedivmod/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/ultimatepointone/main.go b/go/tests/ultimatepointone/main.go index a1d5344f..5b7df915 100644 --- a/go/tests/ultimatepointone/main.go +++ b/go/tests/ultimatepointone/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func main() { diff --git a/go/tests/union/main.go b/go/tests/union/main.go index 1bef8f49..f3923683 100644 --- a/go/tests/union/main.go +++ b/go/tests/union/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/uniqueoccurences/main.go b/go/tests/uniqueoccurences/main.go index 59616d0b..0f6a659b 100644 --- a/go/tests/uniqueoccurences/main.go +++ b/go/tests/uniqueoccurences/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/01-edu/public/go/lib" + "lib" ) func main() { diff --git a/go/tests/unmatch/main.go b/go/tests/unmatch/main.go index d7457d9c..b66751f5 100644 --- a/go/tests/unmatch/main.go +++ b/go/tests/unmatch/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) // Returns the element of the slice that doesn't have a correspondant pair diff --git a/go/tests/volumechanger/main.go b/go/tests/volumechanger/main.go index 5a6eb16d..4f7bd79f 100644 --- a/go/tests/volumechanger/main.go +++ b/go/tests/volumechanger/main.go @@ -1,8 +1,9 @@ package main import ( - "./student" - "github.com/01-edu/public/go/lib" + student "student" + + "lib" ) func abs(a int) int { diff --git a/go/tests/wdmatch/main.go b/go/tests/wdmatch/main.go index 861da8f4..a008d6a2 100644 --- a/go/tests/wdmatch/main.go +++ b/go/tests/wdmatch/main.go @@ -3,7 +3,7 @@ package main import ( "strings" - "github.com/01-edu/public/go/lib" + "lib" ) func main() {