Skip to content

Instantly share code, notes, and snippets.

@yngwie74
yngwie74 / find_primes.py
Created January 17, 2012 00:12
Mi implementación del problema #7 del proyecto Euler
#!/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
"""