Skip to main content
-3 bytes
Source Link
Jo King
  • 48.1k
  • 6
  • 131
  • 187

Perl 6, 2727 24 bytes

-3 bytes thanks to nwellnhof

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

Try it online!

Alternatively for the same amount of bytes:

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

Try it online!Try it online!

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!

Perl 6, 27 24 bytes

-3 bytes thanks to nwellnhof

*.uc.comb(/<:L>/).Set/26 

Try it online!

Source Link
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!