Tagged Questions
0
votes
1answer
39 views
Calculating Highly divisible triangular number with PHP
I am trying to resolve project euler problem no 12 with PHP but it is taking too much time to process. I came across with similar processing problems of PHP while solving previous problems and I had ...
0
votes
3answers
139 views
Project Euler #3 - Finding Prime Factors [closed]
SPOILER
This is about question 3 on Project Euler if you want to try it do not read ahead as it contains the answer!
So the objective is to find the largest prime factor for a number the code I ...
-2
votes
1answer
351 views
Project Euler: 413
I'm trying to solve the latest Project Euler problem using brute force ( I know it's not the best solution, but till I figure out, where I'm mistaken, I'll just use that ).
I can't understand, what ...
2
votes
2answers
326 views
Project Euler #23: Non-abundant sums
I'm struggling with Project Euler problem 23: Non-abundant sums.
I have a script, that calculates abundant numbers:
function getSummOfDivisors( $number )
{
$divisors = array ();
for( $i = ...
-6
votes
1answer
72 views
Logic error (I guess) on PHP [closed]
I'm trying to solve the 29th problem of project Euler using PHP. Here is the source code :
$n[1000000000];
for($a=2; $a<=100; $a++){
for($b=2; $b<=100; $b++){
$n[$N]=pow($a,$b);
...
0
votes
1answer
60 views
Clarifying what is meant by the wording for Project Euler #24?
Problem 24 clearly asks:
What is the millionth lexicographic permutation of the digits 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9?
If my initial string then is:
$str = "0123456789";
I interpret the ...
8
votes
2answers
160 views
Project Euler #19 code seems right. What am I missing?
Problem 19:
You are given the following information, but you may prefer to do some
research for yourself.
1 Jan 1900 was a Monday.
Thirty days has September, April, June and
...
0
votes
2answers
589 views
Calculating prime factors for Project Euler
I need to find the greatest prime factor of a large number: up to 12 places (xxx,xxx,xxx,xxx). I have solved the problem, and the code works for small numbers (up to 6 places); however, the code ...
1
vote
4answers
269 views
Project Euler # 2 solution in PHP
I got the solution; however, I feel like the code is pretty awful. This is within my first 50 hours using any programming language...please bear with me.
The Problem:
Each new term in the ...
0
votes
1answer
768 views
PHP Configuration for GMP and Large Number Arithmetic
I'm using PHP to do some of the problems on projecteuler.net, but I have found that with my current installation of PHP, I cannot compute numbers long or large enough to do some of the problems.
Some ...
1
vote
2answers
203 views
Project Euler Spoilers, #001 - PHP Sums
I cannot ask for help on their forums, but i've been at this for 3 hours now. Spoilers Below I don't understand what i'm doing wrong. The question is:
If we list all the natural numbers below 10 ...
0
votes
2answers
264 views
Fibonacci Problem #2 from Project Euler with PHP
The question goes like this:
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, 5, 8, 13, ...
1
vote
4answers
164 views
PHP - Project Euler #2
I got the answer fine, but when I run the following code,
$total = 0;
$x = 0;
for ($i = 1;; $i++)
{
$x = fib($i);
if ($x >= 4000000)
break;
else if ($x % 2 == 0)
$total ...
0
votes
2answers
407 views
Project Euler || Question 10
I'm attempting to solve Project Euler in PHP and running into a problem with my for loop conditions inside the while loop. Could someone point me towards the right direction? Am I on the right track ...
9
votes
6answers
1k views
Python vs PHP speed
I want to solve a problem from Project Euler (BTW, problem 25), and I found a solution in Python:
fibonacci = 1
old1 = 0
old2 = 1
limit = 1000
i = 1
while len(str(fibonacci)) < limit:
...
2
votes
4answers
2k views
Is there any way to maximize PHP_INT_MAX?
I can't find this row in php.ini, so is there any way to do that?
So ok, I understood, the answer is not, then how should I calculate the result of this task if I want it do with php?
The prime ...
0
votes
8answers
265 views
Is any solution the correct solution?
I always think to myself after solving a programming challenge that I have been tied up with for some time, "It works, thats good enough".
I don't think this is really the correct mindset, in my ...
2
votes
5answers
835 views
prime generator optimization
I'm starting out my expedition into Project Euler. And as many others I've figured I need to make a prime number generator. Problem is: PHP doesn't like big numbers. If I use the standard Sieve of ...
0
votes
3answers
167 views
How do I save the original argument in a recursive function in PHP?
I'm in PHP working on an Euler problem. I have this function so far:
<?php
$biggest = 0;
$counter = 1;
function test($i){
global $biggest;
global $counter;
if ($i == 1) {
echo ...
1
vote
5answers
229 views
PHP function efficiencies
Is there a table of how much "work" it takes to execute a given function in PHP? I'm not a compsci major, so I don't have maybe the formal background to know that "oh yeah, strings take longer to work ...
0
votes
4answers
565 views
Project Euler #5 php doubt!
problem euler #5
i found the solution but i don't know why this first code is faster (i put 14 in order to try to make more clear the code) the only difference is that i eliminate the for i wrote for ...
-1
votes
8answers
1k views
A Project Euler Puzzler (specifically in PHP)
There is another recent Project Euler question but I think this is a bit more specific (I'm only really interested in PHP based solutions) so I'm asking anyway.
Question #5 tasks you with: "What is ...
