julycoding/The-Art-Of-Programming-By-July-2nd

这样可以吗

wollld opened this issue · 0 comments

function include(a,b){
return Array.from(new Set(b.split(""))).every(
(v)=>{return a.split("").includes(v)}
)
}
这样可以吗?