This file contains 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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
""" | |
Implementación del problema #7 del proyecto Euler (projecteuler.net/problem=7): | |
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that | |
the 6th prime is 13. What is the 10,001st prime number? | |
https://gist.github.com/1623748 | |
""" |
NewerOlder