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