Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 264 Bytes

File metadata and controls

9 lines (6 loc) · 264 Bytes

Screen Shot 2022-07-01 at 22 15 35

function isIsogram(str){
  return new Set(str.toUpperCase()).size == str.length;
}