add: 验证回文字符串 Ⅱ

This commit is contained in:
2020-05-18 00:43:15 +08:00
committed by yi-ge
parent 95c8f9aac2
commit 57045d7772
8 changed files with 135 additions and 5 deletions

View File

@ -0,0 +1,6 @@
import { maxProduct } from '../../src/array/maximum-product-subarray'
test('', () => {
expect(maxProduct([2, 3, -2, 4])).toBe(6)
expect(maxProduct([-2, 0, -1])).toBe(0)
})