["hello", "hey"]应该返回false,因为字符串"hello"并不包含字符"y"。["Alien", "line"]应该返回true,因为"line"中所有字符都可以在"Alien"找到。mutation(["hello", "hey"]) //应该返回 false.mutation(["zyxwvutsrqponmlkjihgfedcba", "qrstu"]) //应该返回 true.mutation(["Mary", "Aarmy"]) //应该返回 true.mutation(["Alien", "line"]) //应该返回 true.mutation(["floor", "for"]) //应该返回 true.mutation(["hello", "neo"]) //应该返回 false.
添加回答
举报
0/150
提交
取消