logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

project Euler第三题

题目:The prime factors of 13195 are 5, 7, 13 and 29.What is the largest prime factor of the number 600851475143 ?算法:#!/usr/bin/env python#coding=utf-8a = 600851475143b = 0Li = 3Lwhil

#算法
project Euler第十题

题目:The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.Find the sum of all the primes below two million.算法:#!/usr/bin/env python#coding=utf-8sum = 2def is_prime(num):i = 2

#python#算法#java
到底了