Created
January 10, 2020 19:52
-
-
Save Matojeje/21895087ca74138adc4573ef112014c0 to your computer and use it in GitHub Desktop.
Pangram codegolf - https://code-golf.io/pangram-grep#javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(x="",i=65;i<91;i++)x+=`(?=.*${String.fromCharCode(i)})` | |
arguments.forEach(a=>{RegExp(x,"i").test(a)&&print(a)}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment