-2
votes
2answers
71 views

programming challenge help (python)? [duplicate]

I'm trying to solve project euler problem 18/67 . I have an attempt but it isn't correct. tri = '''\ 75 95 64 17 47 82 18 35 87 10 20 04 82 47 65 19 01 23 75 03 34 88 02 ...
0
votes
2answers
71 views

Python: Project Euler 145

my question today is if I am going down on the right path for Euler 145 and if it is sorta kinda efficient. I have most of it down, just one of my Defs is giving me troubles with ...
0
votes
3answers
134 views

Euler #4 in Python

A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 × 99. Find the largest palindrome made from the product of two ...
-1
votes
1answer
108 views

Is there any more optimal way to solve this idempotent equation (modulo n ring)?

This is one of the problems on Project Euler: If we calculate a^2 mod 6 for 0 <= a <= 5 we get: 0, 1, 4, 3, 4, 1. The largest value of "a" such that a^2 mod 6 = a is 4. Let's call ...
-1
votes
1answer
125 views

I don't understand why this Python code executes like this! [Project Euler] [closed]

I was just completing Project Euler, problem no. 1 for Python... the link to this is below: http://projecteuler.net/problem=1 I came up with the following solution to this, in python... ...
5
votes
3answers
121 views

Is there a way to avoid this memory error?

I'm currently working through the problems on Project Euler, and so far I've come up with this code for a problem. from itertools import combinations import time def findanums(n): l = [] ...
2
votes
5answers
125 views

What's wrong with my Fibonacci sequence generator?

I'm trying to solve Problem #25 on Project Euler. Here's what I've got so far: def fibonacci(length): fibs = [0,1] while length > len(fibs): fibs.append(fibs[-1] + fibs[-2]) ...
0
votes
3answers
61 views

optimization help to find max number of divisors

I'm trying to solve problem 12 of Euler project. What is the value of the first triangle number to have over five hundred divisors? ( the 7th triangle number would be 1 + 2 + 3 + 4 + 5 + 6 + 7 = 28). ...
1
vote
2answers
193 views

Calculating the first triangle number to have over 500 divisors in python

I'm trying to solve the 12th problem on Project Euler. I can calculate the number that has over 500 divisors in almost 4 minutes. How can i make it faster? Here's the attempt; import time def ...
0
votes
3answers
85 views

Recursion depth error in simple Python program

I am new to programming, and was trying to solve this problem on Project Euler using basic Python. Essentially, I tried to use recursion based on the largest value chosen at every stage, and using ...
-2
votes
1answer
156 views

Project Euler #11 in python

I am attempting to do project euler #11 (http://projecteuler.net/problem=11) , but I keep on incorrectly getting 51267216 as my answer and I can't figure out why. Right now I start by formatting the ...
-2
votes
1answer
156 views

Project Euler #82 (Python)

First of all this is the problem : https://projecteuler.net/problem=82 . This is my code : # https://projecteuler.net/problem=82 matrice = open('matrix3.txt','r').read().split('\n') m = [] for el ...
0
votes
2answers
123 views

Overflow error Python for Modular Cubes

Attempting to solve this problem: For a positive number n, define S(n) as the sum of the integers x, for which 1 < x < n and x^3 ≡ 1 mod n. When n=91, there are 8 possible values for ...
10
votes
5answers
302 views

Multiplicative combination algorithm

Problem: Given a number n, is there an efficient algorithm to obtain a list of 2-combinations from the set {1...n}, sorted by the value of the product of the combination? I need this in order to ...
5
votes
1answer
140 views

Project Euler #2 in Python

Background I am stuck on this problem: Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, ...
2
votes
4answers
167 views

prime number generator taking too much time [closed]

I'm solving the problem: 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? def checkPrime(x): facs = 0 ...
1
vote
1answer
63 views

generating strings from a file

This is the start of a solution for Project Euler Problem 22. I have a sample version of their text file from which I am trying to generate names one name at a time. This is a link to the ...
2
votes
2answers
168 views

Python: 'For'loop only runs once, Project Euler

I've been learning Python and playing with Project Euler to recondition some of my math skills. I ran into an issue with Problem 35. I've generated all Primes under 1 million, eliminated those ...
0
votes
2answers
114 views

PROJECT EULER 2

I have just started doing project euler and was wondering if someone could help me fix this script: def fib(): x,y = 0,1 while True: yield x x,y = y, x+y def even(seq): ...
-1
votes
1answer
93 views

Amicable numbers function breaks somehow

This function is my developing attempt to solve Project Euler problem 21. Evaluate the sum of all the amicable numbers under 10000. I am using a module, list_divisors(), I made which is located in ...
-1
votes
1answer
95 views

Project Euler 19. Too many Sundays

From Euler: 1 Jan 1900 was a Monday. How many Sundays fell on the first of the month during the twentieth century (1 Jan 1901 to 31 Dec 2000)? My first function collects every day into a list ...
-1
votes
1answer
88 views

Project Euler 17 erroneous code with lengthly test

Sorry for the length. This is not easy to make with less code. The problem description reads as follows: If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are ...
2
votes
3answers
147 views

Understanding change-making algorithm

I was looking for a good solution to the Change-making problem and I found this code(Python): target = 200 coins = [1,2,5,10,20,50,100,200] ways = [1]+[0]*target for coin in coins: for i in ...
3
votes
1answer
147 views

How do I iterate over a large number of tuples of integers in the order of their sum?

I'm using itertools.combinations() to iterate over tuples of integers. I am interested in the tuple with the lowest sum that satisfies some conditions: def findLowestNiceTuple: for tup in ...
1
vote
2answers
194 views

Continued Fraction to Fraction Malfunction

I've been working on Project euler Problem 57 (Love the site!). For this problem a conversion is required between a finite continued fraction and a normal fraction. I devised an algorithm that ...
-2
votes
5answers
106 views

Three lines to find the greatest product in a string of numbers in Python

Full disclosure: this is for an assignment. Simply getting working code is enough, but doing this in three lines gets me extra credit. I'm trying to take a 1000-digit string and find the largest ...
0
votes
1answer
134 views

Correct code but Wrong ans :( [closed]

I am solving Project Euler Problem #18 in Python. I have successfully solved the sample problem given there, but failed in solving the main problem. But the code is same. Code is: matrix = [('75', ...
3
votes
4answers
207 views

How would you implement a divisor function?

The divisor function is the sum of divisors of a natural number. Making a little research I found this to be a very good method if you want to find the divisor function of a given natural number N, ...
-2
votes
2answers
129 views

list object not callable project euler 59

I am trying to do project euler problem 59, i am having an issue in that one of the necessary methods won't work as the program returns: xorNum = test(f,j) TypeError: 'list' object is not callable. ...
0
votes
2answers
119 views

I don't understand element 103 from project Euler?

I am slowly solving my way though project Euler. I have reached problem 103 and I don't understand the criteria for the sets. The two rules given are (1), no two sets should have the same sum, (2), if ...
2
votes
4answers
273 views

Project Euler #2

I'm doing the problems on the project euler website and I'm stuck on the second one. Here's the problem: Each new term in the Fibonacci sequence is generated by adding the previous two terms. ...
6
votes
1answer
78 views

Iterative deletion from list (Python 2)

I've just started programming, and I'm solving Project Euler problems with Python for practice. (This is problem #2, finding the sum of the even fibonacci numbers within 4 million) My problem appears ...
4
votes
3answers
156 views

A wrong answer obviously means a logic error, but what is at fault in what was thought?

Problem 14 on Project Euler describes a certain puzzle that many people have asked about here. My question is not how to solve the problem or how to fix other people's errors. After thinking about the ...
6
votes
2answers
433 views

Project Euler 240: number of ways to roll dice

I 'm trying to solve Project Euler problem 240: In how many ways can twenty 12-sided dice (sides numbered 1 to 12) be rolled so that the top ten sum to 70? I've come up with code to solve this. ...
1
vote
5answers
403 views

Python summing itertools.count?

I'm having some trouble with the itertools.count function, and I don't quite understand what it does. I expect the code below to accomplish Project Euler problem 2. I know that I could write this ...
2
votes
3answers
316 views

Euler Project #3 in Python

I'm trying to solve the Project Euler problem 3 in Python: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? I know my programm is ...
9
votes
2answers
221 views

Why is Pypy's deque so slow?

Here is a (slightly messy) attempt at Project Euler Problem 49. I should say outright that the deque was not a good choice! My idea was that shrinking the set of primes to test for membership would ...
3
votes
2answers
236 views

Project Euler #35: nicer way to test if an even integer is 'inside' an integer

Question: What's the best way to iterate over an integer and find other integers inside it, then throw that integer away if it contains them? Long Version: I have been working on my Python skills by ...
-2
votes
1answer
165 views

Is there any better solution for projecteuler 15? [closed]

my code is like this which work too long for rows and cols > 15, is there any better solutions ? Problem link: https://projecteuler.net/problem=15 #!/usr/bin/env python rows = 3 cols = 3 start_row = ...
4
votes
2answers
154 views

Python avoiding lambda for key which needs two callables (function composition)

I was working on project euler problem 14 and as a first attempt I whipped up this brute-force solution: def collatz(n, memo={1: [1]}): if n not in memo: memo[n] = [n] + collatz(3 * n + 1 if n ...
4
votes
1answer
243 views

Project Euler #18 - how to brute force all possible paths in tree-like structure using Python?

Am trying to learn Python the Atlantic way and am stuck on Project Euler #18. All of the stuff I can find on the web (and there's a LOT more googling that happened beyond that) is some variation on ...
1
vote
3answers
121 views

Strange loop behavior in Python

The code: total = 0 for number in xrange(10000): divisors = 0 divisors2 = 0 for dividend in xrange(1, number/2): if number % dividend == 0: divisors = divisors + ...
3
votes
2answers
188 views

Why is there such a huge performance different between the same Python/Java code?

I'm currently trying to work through the ProjectEuler questions with Python (something I've only picked up today). The question I'm working is question 5, where 2520 is the smallest number that can ...
0
votes
2answers
150 views

Project Euler #10 - Python Wrong result

Project Euler #10 I am using the following code: import math def is_prime(num): num_sqrt=int(math.sqrt(num))+1 for i in range(2, num_sqrt): if(num%i == 0): return False ...
-1
votes
2answers
578 views

Stuck on Project Euler #3 in python

The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? Ok, so i am working on project euler problem 3 in python. I am kind of confused. I ...
0
votes
2answers
345 views

Trying to see if a number is prime in pyhon

So im trying to write a program that tells you wether a number is prime or not. Here it is. As you can see when you run the chkPrime function everything returns true. I for the life of me cant figure ...
0
votes
2answers
165 views

Finding the word version of a number [duplicate]

Possible Duplicate: Project Euler 17 So for this problem here of project euler: If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are 3 + 3 + 5 + 4 ...
0
votes
2answers
307 views

finding diagonal numbers

So I have this array here: t = [[8,2,22,97,38,15,0,40,0,75,4,5,7,78,52,12,50,77,91,8], [49,49,99,40,17,81,18,57,60,87,17,40,98,43,69,48,4,56,62,0], ...
3
votes
2answers
933 views

highest palindrome with 3 digit numbers in python

In problem 4 from http://projecteuler.net/ it says: A palindromic number reads the same both ways. The largest palindrome made from the product of two 2-digit numbers is 9009 = 91 * 99. Find ...
2
votes
3answers
260 views

A bit of math and logic

So I have this problem here: If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the ...

1 2 3 4