Skip to content

Instantly share code, notes, and snippets.

View NicMcPhee's full-sized avatar

Nic McPhee NicMcPhee

View GitHub Profile
@rtoal
rtoal / rubin.py
Created December 14, 2013 18:11
Rubin's "'Goto Considered Harmful' Considered Harmful" as a Python One-Liner
next((i for i,row in enumerate(a) if all(x == 0 for x in row)), -1)