Last active
August 29, 2015 13:58
-
-
Save elight/10060434 to your computer and use it in GitHub Desktop.
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
// illegal | |
grid := [][]int{ | |
{1, 0, 1}, | |
{0, 1, 0}, | |
{1, 0, 1} | |
} | |
// legal | |
grid := [][]int{ | |
{1, 0, 1}, | |
{0, 1, 0}, | |
{1, 0, 1}} | |
// whitespace | |
// shouldn't | |
// matter |
Very lispy.
@nate: I find your use of a significant-yet-appearing-superfluous comma disturbing–especially because it works!
I don't even...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@elight Thank you for actually using intention revealing variable names rather than the one character counterparts. It's unfortunate that much of documentation that I see has a plethora of one character variable names.