Re-namespacing one more time to get sources back in the same tree.
I dunno... this whole thing should be its own repo, probably. Meh.
This commit is contained in:
parent
76c392967d
commit
6ebbf04980
@ -1,4 +1,4 @@
|
|||||||
REPO_BASE := github.com/meatballhat/box-o-sand/algs4/go
|
REPO_BASE := github.com/meatballhat/box-o-sand/algs4/src/go
|
||||||
TARGETS := \
|
TARGETS := \
|
||||||
$(REPO_BASE)/algs4 \
|
$(REPO_BASE)/algs4 \
|
||||||
$(REPO_BASE)/algs4-binarysearch \
|
$(REPO_BASE)/algs4-binarysearch \
|
||||||
|
@ -8,7 +8,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
|
"github.com/meatballhat/box-o-sand/algs4/src/go/algs4"
|
||||||
)
|
)
|
||||||
|
|
||||||
const USAGE string = `Usage: algs4-binarysearch <whitelist-file>
|
const USAGE string = `Usage: algs4-binarysearch <whitelist-file>
|
@ -10,7 +10,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
|
"github.com/meatballhat/box-o-sand/algs4/src/go/algs4"
|
||||||
)
|
)
|
||||||
|
|
||||||
const USAGE string = "Usage: algs4-flips <nflips>"
|
const USAGE string = "Usage: algs4-flips <nflips>"
|
@ -7,7 +7,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
|
"github.com/meatballhat/box-o-sand/algs4/src/go/algs4"
|
||||||
)
|
)
|
||||||
|
|
||||||
const USAGE string = `Usage: algs4-gcd <uint> <uint>`
|
const USAGE string = `Usage: algs4-gcd <uint> <uint>`
|
@ -7,7 +7,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
|
"github.com/meatballhat/box-o-sand/algs4/src/go/algs4"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
@ -5,7 +5,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
|
"github.com/meatballhat/box-o-sand/algs4/src/go/algs4"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestBinarySearchRank(t *testing.T) {
|
func TestBinarySearchRank(t *testing.T) {
|
@ -5,7 +5,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
|
"github.com/meatballhat/box-o-sand/algs4/src/go/algs4"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGcd(t *testing.T) {
|
func TestGcd(t *testing.T) {
|
@ -7,7 +7,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/meatballhat/box-o-sand/algs4/go/algs4"
|
"github.com/meatballhat/box-o-sand/algs4/src/go/algs4"
|
||||||
)
|
)
|
||||||
|
|
||||||
const INTS_STRING = `
|
const INTS_STRING = `
|
Loading…
Reference in New Issue
Block a user