const _isSameSet = (s1, s2) => { for(let i = 0; i <s1.length; i++){ if( !s2.indexOf(s1[i])) return false; } return true; }