mirror of
https://github.com/cubixle/codekata-golang.git
synced 2026-04-24 23:04:42 +01:00
23: non-abundant sums
This commit is contained in:
82
23_non_abundant_sums/abundant_test.go
Normal file
82
23_non_abundant_sums/abundant_test.go
Normal file
@@ -0,0 +1,82 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func Test_isAbundantNumber(t *testing.T) {
|
||||
tt := []struct {
|
||||
name string
|
||||
input int
|
||||
want bool
|
||||
}{
|
||||
{
|
||||
"1",
|
||||
1,
|
||||
false,
|
||||
},
|
||||
{
|
||||
"12",
|
||||
12,
|
||||
true,
|
||||
},
|
||||
{
|
||||
"28",
|
||||
28,
|
||||
false,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range tt {
|
||||
t.Run(tc.name, func(t *testing.T) {
|
||||
got := isAbundantNumber(tc.input)
|
||||
if got != tc.want {
|
||||
t.Errorf("isAbundantNumber() = %v, want %v", got, tc.want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func Test_sumOfDivisors(t *testing.T) {
|
||||
tt := []struct {
|
||||
name string
|
||||
input int
|
||||
want int
|
||||
}{
|
||||
{
|
||||
"1",
|
||||
1,
|
||||
0,
|
||||
},
|
||||
{
|
||||
"2",
|
||||
2,
|
||||
1,
|
||||
},
|
||||
{
|
||||
"4",
|
||||
4,
|
||||
3,
|
||||
},
|
||||
{
|
||||
"12",
|
||||
12,
|
||||
16,
|
||||
},
|
||||
{
|
||||
"28",
|
||||
28,
|
||||
28,
|
||||
},
|
||||
}
|
||||
|
||||
for _, tc := range tt {
|
||||
t.Run(tc.name, func(t *testing.T) {
|
||||
got := sumOfDivisors(tc.input)
|
||||
if !reflect.DeepEqual(got, tc.want) {
|
||||
t.Errorf("sumOfDivisors() = %d, want %d", got, tc.want)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user