Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 264 Bytes

File metadata and controls

8 lines (6 loc) · 264 Bytes

Screen Shot 2022-08-10 at 01 31 08

function longest(s1, s2) {
  return Array.from(new Set(s1 + s2)).sort().join('');
}