Last active
August 29, 2015 14:15
-
-
Save zrnsm/3c00ce870128e4176ce3 to your computer and use it in GitHub Desktop.
Spiral Golf
This file contains 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
n,r,c=31,range,'x ' | |
s=map(r,[n]*n) | |
def f(x): | |
q=r(x,n-x) | |
for i in q: | |
for j in q:s[i][j]=c[x%2] | |
for i in r(0,n/2,2):f(i),f(i+1);s[i+2][i+1],s[i+1][i]=c | |
for r in s:print ' '.join(r) |
chieu's functional math: https://gist.github.com/KirarinSnow/a2abcbfeda046a62b29d
Shrunken to 99 chars!!!
Now 93 chars!!!
Now 87!!
If the size (an odd integer) is read in through stdin, then 95 chars.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/yosun/b21d82c1f97af8d3a0fa