Skip to main content
1 of 2
Jo King
  • 48.1k
  • 6
  • 131
  • 187

Perl 6, 27 bytes

(*.uc.comb∩('A'..'Z'))/26 

Try it online!

Alternatively for the same amount of bytes:

{m:g/\w//26}o~*.uc.comb.Set 

Try it online!

Jo King
  • 48.1k
  • 6
  • 131
  • 187