update: 和可被K整除的子数组

This commit is contained in:
2020-05-27 06:40:13 +08:00
parent 596ae26ade
commit a69362984c
10 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import { waysToChange } from '../../src/math/coin-lcci'
test('硬币', () => {
expect(waysToChange(5)).toBe(2)
expect(waysToChange(10)).toBe(4)
})