feat: tests

This commit is contained in:
2026-03-06 19:18:42 -05:00
parent aad6f3e91f
commit 3586c94e25
10 changed files with 10 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ package car_fleet_test
import (
"testing"
"git.maximhutz.com/practice/pkg/car_fleet"
"git.maximhutz.com/practice/pkg/questions/car_fleet"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package largest_rectangle_in_histogram_test
import (
"testing"
"git.maximhutz.com/practice/pkg/largest_rectangle_in_histogram"
"git.maximhutz.com/practice/pkg/questions/largest_rectangle_in_histogram"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package longest_consecutive_sequence_test
import (
"testing"
"git.maximhutz.com/practice/pkg/longest_consecutive_sequence"
"git.maximhutz.com/practice/pkg/questions/longest_consecutive_sequence"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package product_of_array_except_self_test
import (
"testing"
"git.maximhutz.com/practice/pkg/product_of_array_except_self"
"git.maximhutz.com/practice/pkg/questions/product_of_array_except_self"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package three_sum_test
import (
"testing"
"git.maximhutz.com/practice/pkg/three_sum"
"git.maximhutz.com/practice/pkg/questions/three_sum"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package top_k_frequent_elements_test
import (
"testing"
"git.maximhutz.com/practice/pkg/top_k_frequent_elements"
"git.maximhutz.com/practice/pkg/questions/top_k_frequent_elements"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package two_sum_test
import (
"testing"
"git.maximhutz.com/practice/pkg/two_sum"
"git.maximhutz.com/practice/pkg/questions/two_sum"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package valid_palindrome_test
import (
"testing"
"git.maximhutz.com/practice/pkg/valid_palindrome"
"git.maximhutz.com/practice/pkg/questions/valid_palindrome"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package valid_sudoku_test
import (
"testing"
"git.maximhutz.com/practice/pkg/valid_sudoku"
"git.maximhutz.com/practice/pkg/questions/valid_sudoku"
"github.com/stretchr/testify/assert"
)

View File

@@ -3,7 +3,7 @@ package wildcard_matching_test
import (
"testing"
"git.maximhutz.com/practice/pkg/wildcard_matching"
"git.maximhutz.com/practice/pkg/questions/wildcard_matching"
"github.com/stretchr/testify/assert"
)