Compare commits
2 Commits
2a6e1677d6
...
7fdf6a520f
| Author | SHA1 | Date | |
|---|---|---|---|
|
7fdf6a520f
|
|||
|
da48abc0d1
|
41
pkg/group_anagrams/main.go
Normal file
41
pkg/group_anagrams/main.go
Normal file
@@ -0,0 +1,41 @@
|
||||
package group_anagrams
|
||||
|
||||
import (
|
||||
"hash/maphash"
|
||||
"slices"
|
||||
)
|
||||
|
||||
func SortString(s string) string {
|
||||
runes := []rune(s)
|
||||
slices.Sort(runes)
|
||||
return string(runes)
|
||||
}
|
||||
|
||||
func AnagramHash(letters string) uint64 {
|
||||
var h maphash.Hash
|
||||
h.WriteString(SortString(letters))
|
||||
return h.Sum64()
|
||||
}
|
||||
|
||||
func GroupAnagrams(items []string) [][]string {
|
||||
anagrams := map[uint64][]string{}
|
||||
|
||||
for _, item := range items {
|
||||
hash := AnagramHash(item)
|
||||
similar, exists := anagrams[hash]
|
||||
|
||||
if exists {
|
||||
anagrams[hash] = append(similar, item)
|
||||
} else {
|
||||
anagrams[hash] = []string{item}
|
||||
}
|
||||
}
|
||||
|
||||
result := [][]string{}
|
||||
|
||||
for _, group := range anagrams {
|
||||
result = append(result, group)
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
14
pkg/group_anagrams/main_test.go
Normal file
14
pkg/group_anagrams/main_test.go
Normal file
@@ -0,0 +1,14 @@
|
||||
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"}))
|
||||
// }
|
||||
89
pkg/top_k_frequent_elements/main.go
Normal file
89
pkg/top_k_frequent_elements/main.go
Normal file
@@ -0,0 +1,89 @@
|
||||
package top_k_frequent_elements
|
||||
|
||||
/// O(n*log(n))
|
||||
|
||||
// func ToMultiset(nums []int) map[int]int {
|
||||
// result := map[int]int{}
|
||||
|
||||
// for _, num := range nums {
|
||||
// result[num]++
|
||||
// }
|
||||
|
||||
// return result
|
||||
// }
|
||||
|
||||
// func ToEntries(multiset map[int]int) [][2]int {
|
||||
// result := [][2]int{}
|
||||
|
||||
// for num, amount := range multiset {
|
||||
// result = append(result, [2]int{num, amount})
|
||||
// }
|
||||
|
||||
// return result
|
||||
// }
|
||||
|
||||
// func ByDescendingAmount(a, b [2]int) int {
|
||||
// return b[1] - a[1]
|
||||
// }
|
||||
|
||||
// func GetNumbers(entries [][2]int) []int {
|
||||
// amounts := []int{}
|
||||
|
||||
// for _, entry := range entries {
|
||||
// amounts = append(amounts, entry[0])
|
||||
// }
|
||||
|
||||
// return amounts
|
||||
// }
|
||||
|
||||
// func TopKFrequent(nums []int, k int) []int {
|
||||
// multiset := ToMultiset(nums)
|
||||
// entries := ToEntries(multiset)
|
||||
|
||||
// slices.SortFunc(entries, ByDescendingAmount)
|
||||
// return GetNumbers(entries[0:k])
|
||||
// }
|
||||
|
||||
/// O(n)
|
||||
|
||||
func ToMultiset(nums []int) map[int]int {
|
||||
result := map[int]int{}
|
||||
|
||||
for _, num := range nums {
|
||||
result[num]++
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
|
||||
func TopKFrequent(nums []int, k int) []int {
|
||||
multiset := ToMultiset(nums)
|
||||
|
||||
// Bucket Sort.
|
||||
//
|
||||
// A multiset's frequency is always less then or equal to the length of the
|
||||
// original list. So, you can use bucket sort to sort the items in O(n).
|
||||
frequencies := make([][]int, len(nums))
|
||||
|
||||
for value, amount := range multiset {
|
||||
if frequencies[amount-1] == nil {
|
||||
frequencies[amount-1] = []int{}
|
||||
}
|
||||
|
||||
frequencies[amount-1] = append(frequencies[amount-1], value)
|
||||
}
|
||||
|
||||
top_frequencies := []int{}
|
||||
|
||||
for i := len(nums) - 1; i >= 0; i-- {
|
||||
for _, num := range frequencies[i] {
|
||||
top_frequencies = append(top_frequencies, num)
|
||||
|
||||
if len(top_frequencies) == k {
|
||||
return top_frequencies
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return top_frequencies
|
||||
}
|
||||
20
pkg/top_k_frequent_elements/main_test.go
Normal file
20
pkg/top_k_frequent_elements/main_test.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package top_k_frequent_elements_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"git.maximhutz.com/practice/pkg/top_k_frequent_elements"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func Test1(t *testing.T) {
|
||||
assert.Equal(t, []int{1, 2}, top_k_frequent_elements.TopKFrequent([]int{1, 1, 1, 2, 2, 3}, 2))
|
||||
}
|
||||
|
||||
func Test2(t *testing.T) {
|
||||
assert.Equal(t, []int{1}, top_k_frequent_elements.TopKFrequent([]int{1}, 1))
|
||||
}
|
||||
|
||||
func Test3(t *testing.T) {
|
||||
assert.Equal(t, []int{1, 4}, top_k_frequent_elements.TopKFrequent([]int{1, 4, 1, 4, 1, 4, 3, 1, 3, 4}, 2))
|
||||
}
|
||||
Reference in New Issue
Block a user