现在的位置: 首页 > 综合 > 正文

测试

2018年01月26日 ⁄ 综合 ⁄ 共 183字 ⁄ 字号 评论关闭

#TestCase1
input: [qwe r t]
output:3
[qwe]
[r]
[t]

#TestCase2
input: ["q/w e " d]
output:2
[qw e ]
[d]

#TestCase3
input: [q"w" e]
output:ERROR

#TestCase4
input: [/"q  w]
output:2
["q]
[w]

#TestCase5
input: []
output:
[]

抱歉!评论已关闭.