15 lines
349 B
Go
15 lines
349 B
Go
package group_anagrams_test
|
|
|
|
// import (
|
|
// "testing"
|
|
|
|
// . "git.maximhutz.com/practice/pkg/group_anagrams"
|
|
// "github.com/stretchr/testify/assert"
|
|
// )
|
|
|
|
// func Test1(t *testing.T) {
|
|
// assert.Equal(t,
|
|
// [][]string{{"bat"}, {"nat", "tan"}, {"ate", "eat", "tea"}},
|
|
// GroupAnagrams([]string{"eat", "tea", "tan", "ate", "nat", "bat"}))
|
|
// }
|