leetcode
2
和
c
描述
一个简单的
leetcode
案例测试工具。
安装
npm
我
leetcode_test
示例如何使用
故意错误回答,显示失败。
虽然答案的顺序不同,但判断是对的。
当结果为数组时,添加案例的第三个参数来决定是否排序。
example_1_question_010
代码:
let
test
=
require('leetcode_test').test
/**
*
@param
{string}
s
*
@param
{string}
p
*
@return
{boolean}
*/
var
isMatch
=
function
(s,
p)
{
if
(p.length
===
0)
{
return
s.length
===
0
}
firstMath
=
s.length
>
0
&&
(p[0]
===
s[0]
||
p[0]
===
'.')
if
(p.length
>=
2
&&
p[1]
===
'*')
{
//the
following
two
parts
can't
exchange
their
position
retur
评论0
最新资源