Skip to content

Commit a987a24

Browse files
authored
refactor: buat folder 'algoritma' dan pindahkan 'searching' ke dalamnya (#54)
1 parent bc8fe41 commit a987a24

File tree

8 files changed

+3
-3
lines changed

8 files changed

+3
-3
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/algorithm/searching/interpolation_test.go renamed to tests/algoritma/searching/interpolation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package searching
33
import (
44
"testing"
55

6-
"github.com/bellshade/Golang/searching"
6+
"github.com/bellshade/Golang/algoritma/searching"
77
)
88

99
func TestInterpolasi(t *testing.T) {

tests/algorithm/searching/linear_searching_test.go renamed to tests/algoritma/searching/linear_searching_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package searching
33
import (
44
"testing"
55

6-
"github.com/bellshade/Golang/searching"
6+
"github.com/bellshade/Golang/algoritma/searching"
77
)
88

99
func TestLinearSearching(t *testing.T) {

tests/algorithm/searching/ternary_searching_test.go renamed to tests/algoritma/searching/ternary_searching_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"math"
55
"testing"
66

7-
"github.com/bellshade/Golang/searching"
7+
"github.com/bellshade/Golang/algoritma/searching"
88
)
99

1010
const EPS = 1e-6
File renamed without changes.

0 commit comments

Comments
 (0)