Browse Source

Update imports

content-update
Xavier Petit 4 years ago committed by xpetit
parent
commit
7f6a66581b
  1. 2
      tests/go/prog/addprimesum/test.go
  2. 2
      tests/go/prog/alphamirror/test.go
  3. 2
      tests/go/prog/balancedstring/test.go
  4. 2
      tests/go/prog/boolean/test.go
  5. 2
      tests/go/prog/brackets/test.go
  6. 2
      tests/go/prog/brainfuck/test.go
  7. 2
      tests/go/prog/cat/test.go
  8. 2
      tests/go/prog/cleanstr/test.go
  9. 2
      tests/go/prog/comcheck/test.go
  10. 2
      tests/go/prog/costumeprofit/test.go
  11. 2
      tests/go/prog/countdown/test.go
  12. 2
      tests/go/prog/displaya/test.go
  13. 2
      tests/go/prog/displayalpham/test.go
  14. 2
      tests/go/prog/displayalrevm/test.go
  15. 2
      tests/go/prog/displayfile/test.go
  16. 2
      tests/go/prog/displayfirstparam/test.go
  17. 2
      tests/go/prog/displaylastparam/test.go
  18. 2
      tests/go/prog/displayz/test.go
  19. 2
      tests/go/prog/doop/test.go
  20. 2
      tests/go/prog/expandstr/test.go
  21. 2
      tests/go/prog/firstword/test.go
  22. 2
      tests/go/prog/fixthemain/test.go
  23. 2
      tests/go/prog/flags/test.go
  24. 2
      tests/go/prog/fprime/test.go
  25. 2
      tests/go/prog/gcd/test.go
  26. 2
      tests/go/prog/grouping/test.go
  27. 2
      tests/go/prog/hello/test.go
  28. 2
      tests/go/prog/hiddenp/test.go
  29. 2
      tests/go/prog/inter/test.go
  30. 2
      tests/go/prog/ispowerof2/test.go
  31. 2
      tests/go/prog/lastword/test.go
  32. 2
      tests/go/prog/nbrconvertalpha/test.go
  33. 2
      tests/go/prog/nenokku/test.go
  34. 2
      tests/go/prog/onlya/test.go
  35. 2
      tests/go/prog/onlyz/test.go
  36. 2
      tests/go/prog/options/test.go
  37. 2
      tests/go/prog/paramcount/test.go
  38. 2
      tests/go/prog/piglatin/test.go
  39. 2
      tests/go/prog/pilot/test.go
  40. 2
      tests/go/prog/point/test.go
  41. 2
      tests/go/prog/printalphabet/test.go
  42. 2
      tests/go/prog/printbits/test.go
  43. 2
      tests/go/prog/printchessboard/test.go
  44. 2
      tests/go/prog/printdigits/test.go
  45. 2
      tests/go/prog/printhex/test.go
  46. 2
      tests/go/prog/printparams/test.go
  47. 2
      tests/go/prog/printprogramname/test.go
  48. 2
      tests/go/prog/printrevcomb/test.go
  49. 2
      tests/go/prog/printreversealphabet/test.go
  50. 2
      tests/go/prog/raid2/test.go
  51. 2
      tests/go/prog/raid3/test.go
  52. 2
      tests/go/prog/range/test.go
  53. 2
      tests/go/prog/rectangle/test.go
  54. 2
      tests/go/prog/repeatalpha/test.go
  55. 2
      tests/go/prog/reverserange/test.go
  56. 2
      tests/go/prog/reversestrcap/test.go
  57. 2
      tests/go/prog/revparams/test.go
  58. 2
      tests/go/prog/revwstr/test.go
  59. 2
      tests/go/prog/robottoorigin/test.go
  60. 2
      tests/go/prog/romannumbers/test.go
  61. 2
      tests/go/prog/rostring/test.go
  62. 2
      tests/go/prog/rot13/test.go
  63. 2
      tests/go/prog/rotatevowels/test.go
  64. 2
      tests/go/prog/rpncalc/test.go
  65. 2
      tests/go/prog/searchreplace/test.go
  66. 2
      tests/go/prog/sortparams/test.go
  67. 2
      tests/go/prog/switchcase/test.go
  68. 2
      tests/go/prog/tabmult/test.go
  69. 2
      tests/go/prog/tetrisoptimizer/test.go
  70. 2
      tests/go/prog/union/test.go
  71. 2
      tests/go/prog/uniqueoccurences/test.go
  72. 2
      tests/go/prog/wdmatch/test.go

2
tests/go/prog/addprimesum/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func isAPrime(nb int) bool {

2
tests/go/prog/alphamirror/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := [][]string{

2
tests/go/prog/balancedstring/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := []string{

2
tests/go/prog/boolean/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/brackets/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
oneArgs := []string{

2
tests/go/prog/brainfuck/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/cat/test.go

@ -6,7 +6,7 @@ import (
"os/exec"
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/cleanstr/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := []string{

2
tests/go/prog/comcheck/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/costumeprofit/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
type node struct {

2
tests/go/prog/countdown/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("countdown")

2
tests/go/prog/displaya/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/displayalpham/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("displayalpham")

2
tests/go/prog/displayalrevm/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("displayalrevm")

2
tests/go/prog/displayfile/test.go

@ -4,7 +4,7 @@ import (
"os"
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/displayfirstparam/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/displaylastparam/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/displayz/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/doop/test.go

@ -5,7 +5,7 @@ import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/expandstr/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := [][]string{

2
tests/go/prog/firstword/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := append(lib.MultRandWords(),

2
tests/go/prog/fixthemain/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("fixthemain")

2
tests/go/prog/flags/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
type node struct {
flags []string

2
tests/go/prog/fprime/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/gcd/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/grouping/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func validRegExp(n int) string {
result := "("

2
tests/go/prog/hello/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("hello")

2
tests/go/prog/hiddenp/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := [][2]string{

2
tests/go/prog/inter/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/ispowerof2/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/lastword/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := []string{

2
tests/go/prog/nbrconvertalpha/test.go

@ -4,7 +4,7 @@ import (
"strconv"
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/nenokku/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := [][]string{{

2
tests/go/prog/onlya/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("onlya")

2
tests/go/prog/onlyz/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("onlyz")

2
tests/go/prog/options/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/paramcount/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/piglatin/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := [][]string{

2
tests/go/prog/pilot/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("pilot")

2
tests/go/prog/point/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("point")

2
tests/go/prog/printalphabet/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("printalphabet")

2
tests/go/prog/printbits/test.go

@ -4,7 +4,7 @@ import (
"strconv"
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/printchessboard/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/printdigits/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("printdigits")

2
tests/go/prog/printhex/test.go

@ -4,7 +4,7 @@ import (
"strconv"
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/printparams/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/printprogramname/test.go

@ -4,7 +4,7 @@ import (
"os"
"os/exec"
"../lib"
"../../lib"
)
var name = "student"

2
tests/go/prog/printrevcomb/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("printrevcomb")

2
tests/go/prog/printreversealphabet/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("printreversealphabet")

2
tests/go/prog/raid2/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
valid := [][]string{

2
tests/go/prog/raid3/test.go

@ -4,7 +4,7 @@ import (
"os/exec"
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/range/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/rectangle/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("rectangle")

2
tests/go/prog/repeatalpha/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := []string{

2
tests/go/prog/reverserange/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/reversestrcap/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := [][]string{

2
tests/go/prog/revparams/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("revparams", "choumi", "is", "the", "best", "cat")

2
tests/go/prog/revwstr/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := []string{

2
tests/go/prog/robottoorigin/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := []string{

2
tests/go/prog/romannumbers/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/rostring/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := []string{

2
tests/go/prog/rot13/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := append(lib.MultRandWords(),

2
tests/go/prog/rotatevowels/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/rpncalc/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
args := []string{

2
tests/go/prog/searchreplace/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
type nodeTest struct {

2
tests/go/prog/sortparams/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
lib.ChallengeMain("sortparams", lib.MultRandWords()...)

2
tests/go/prog/switchcase/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := append(lib.MultRandWords(),

2
tests/go/prog/tabmult/test.go

@ -3,7 +3,7 @@ package main
import (
"strconv"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/tetrisoptimizer/test.go

@ -12,7 +12,7 @@ import (
"strings"
"time"
"../lib"
"../../lib"
)
type (

2
tests/go/prog/union/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

2
tests/go/prog/uniqueoccurences/test.go

@ -1,6 +1,6 @@
package main
import "../lib"
import "../../lib"
func main() {
table := []string{

2
tests/go/prog/wdmatch/test.go

@ -3,7 +3,7 @@ package main
import (
"strings"
"../lib"
"../../lib"
)
func main() {

Loading…
Cancel
Save