The solution is simple. Just program in APL. Then _nobody_ can understand your program and so it is "fair" to all. It is a "write only" language.
https://en.wikipedia.org/wiki/APL_(programming_language) Game of Life[edit <https://en.wikipedia.org/w/index.php?title=APL_(programming_language)&action=edit§ion=22> ] The following function "life", written in Dyalog APL, takes a boolean matrix and calculates the new generation according to Conway's Game of Life <https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life>. It demonstrates the power of APL to implement a complex algorithm in very little code, but it is also very hard to follow unless one has advanced knowledge of APL. life←{↑1 ⍵∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂⍵} -- This is clearly another case of too many mad scientists, and not enough hunchbacks. Maranatha! <>< John McKown -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.