mirror of
https://github.com/cubixle/codekata-golang.git
synced 2026-04-24 19:54:43 +01:00
30 lines
668 B
Go
30 lines
668 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
)
|
|
|
|
var prices = []int{6, 8, 12, 14, 18, 22, 24, 26, 28, 32}
|
|
var pricesWithAll = []int{6, 8, 12, 12, 12, 12, 12, 14, 14,
|
|
18, 22, 22, 22, 24, 24, 26, 26, 26, 26, 28, 32, 30, 30, 30, 34, 36, 38, 38, 38, 38, 40, 44}
|
|
|
|
func main() {
|
|
fmt.Println(sumCoins(50, prices))
|
|
fmt.Println(sumCoins(100, prices))
|
|
sort.Ints(pricesWithAll)
|
|
fmt.Println("paid = 50", sumCoins(50, pricesWithAll))
|
|
fmt.Println("paid = 100", sumCoins(100, pricesWithAll))
|
|
}
|
|
|
|
func sumCoins(target int, prices []int) int {
|
|
t := make([]int, target+1)
|
|
t[0] = 1
|
|
for _, c := range prices {
|
|
for j := c; j <= target; j++ {
|
|
t[j] += t[j-c]
|
|
}
|
|
}
|
|
return t[target]
|
|
}
|