SS
Size: a a a
SS
SS
SS
AB
A
AB
A
AB
AB
A
sr
AC
SA
AC
const isPangram = (input) => 'abcdefghijklmnopqrstuvwxyz'.split('').every((letter) => input.includes(letter));
AC
AC
AC
const isPangram = (input) => (new Set(input.toLowerCase().replace(/[^a-z]/g, '').split('')).size === 26);
AC
sr
AC