Skip to content

Instantly share code, notes, and snippets.

@terrycojones
Created March 7, 2012 05:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save terrycojones/1991029 to your computer and use it in GitHub Desktop.
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