add sub function

This commit is contained in:
2025-05-30 01:09:08 +02:00
parent cf4ee051bb
commit 756c4dbf53
2 changed files with 26 additions and 0 deletions
+17
View File
@@ -20,3 +20,20 @@ func Test_sum(t *testing.T) {
}
}
}
func Test_sub(t *testing.T) {
tests := []struct {
a, b int
want int
}{
{1, 2, -1},
{-1, 1, -2},
{0, 0, 0},
}
for _, test := range tests {
if got := sub(test.a, test.b); got != test.want {
t.Errorf("sub(%d, %d) = %d, want %d", test.a, test.b, got, test.want)
}
}
}