Skip to content

Instantly share code, notes, and snippets.

@terrycojones
Created March 7, 2012 05:02
Show Gist options
  • Select an option

  • Save terrycojones/1991029 to your computer and use it in GitHub Desktop.

Select an option

Save terrycojones/1991029 to your computer and use it in GitHub Desktop.
Smallest natural number with no English wikipedia page
import itertools, requests
for i in itertools.count():
r = requests.get('http://en.wikipedia.org/wiki/%d' % i)
if r.status_code == 404:
print i
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment