Skip to content

Instantly share code, notes, and snippets.

@xmgr
Last active January 31, 2018 23:34
Show Gist options
  • Save xmgr/09927128e0b301a25a56a34b88b0636e to your computer and use it in GitHub Desktop.
Save xmgr/09927128e0b301a25a56a34b88b0636e to your computer and use it in GitHub Desktop.
Codegolf alphabet wave

PHP, 67 bytes

    <?php $s='A';while($s!='AA')echo str_repeat($s++.(--$s)[0],13)."
    ";

Try it online!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment