Skip to content

Commit 053b0cb

Browse files
authored
Improved tasks 61-82
1 parent 1b9c80c commit 053b0cb

File tree

9 files changed

+9
-18
lines changed

9 files changed

+9
-18
lines changed

src/main/go/g0001_0100/s0061_rotate_list/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0061_rotate_list
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestRotateRight(t *testing.T) {

src/main/go/g0001_0100/s0063_unique_paths_ii/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0063_unique_paths_ii
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestUniquePathsWithObstacles(t *testing.T) {

src/main/go/g0001_0100/s0066_plus_one/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0066_plus_one
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestPlusOne(t *testing.T) {

src/main/go/g0001_0100/s0067_add_binary/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0067_add_binary
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestAddBinary(t *testing.T) {

src/main/go/g0001_0100/s0068_text_justification/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0068_text_justification
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestFullJustify(t *testing.T) {

src/main/go/g0001_0100/s0071_simplify_path/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0071_simplify_path
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestSimplifyPath(t *testing.T) {

src/main/go/g0001_0100/s0077_combinations/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0077_combinations
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestCombine(t *testing.T) {

src/main/go/g0001_0100/s0080_remove_duplicates_from_sorted_array_ii/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0080_remove_duplicates_from_sorted_array_ii
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestRemoveDuplicates(t *testing.T) {

src/main/go/g0001_0100/s0082_remove_duplicates_from_sorted_list_ii/solution_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package s0082_remove_duplicates_from_sorted_list_ii
22

33
import (
4-
"testing"
5-
64
"github.com/stretchr/testify/assert"
5+
"testing"
76
)
87

98
func TestDeleteDuplicates(t *testing.T) {

0 commit comments

Comments
 (0)