85
votes
24answers
30k views
Fastest way to determine if an integer’s square root is an integer
I'm looking for the fastest way to determine if a long value is a perfect square (i.e. its square root is another integer). I've done it the easy way, by using the built-in Math.sqrt() function, but …
21
votes
2answers
673 views
How can you profile a Python script?
I've seen a quite a few questions on the Project Euler and other places asking how to time the execution of their solutions. Sometimes the given answers are somewhat kludgey - i.e., adding timing code …
17
votes
5answers
2k views
How can I represent a very large integer in .NET?
Does .NET come with a class capable of representing extremely large integers, such as 100 factorial? If not, what are some good third party libraries to accomplish this?
16
votes
11answers
2k views
What is your favorite Project Euler question?
I was searching around for questions related to Project Euler on Stack Overflow, and it seems that there were plenty of people asking about it, and even more people recommending it, whether for fun, …
15
votes
7answers
785 views
Project Euler for programmers? [closed]
Duplicate:
Websites like projecteuler.net
I really like the Project Euler website but its emphasis seems to be more on math than programming. While solutions are given in code, the most …
15
votes
8answers
771 views
Websites like projecteuler.net
Sometimes I'm solving problems on projecteuler.net. Almost all problems are solvable with programs, but these tasks are more mathematical than programmatical.
Maybe someone knows similar sites with:
…
14
votes
6answers
744 views
Mathematics / Algorithmic Resources: ProjectEuler.net puzzles
I've used brute force for the most part for the ProjectEuler.net problems that I have been able to solve. One thing I'm finding is that, for some of the puzzles, I'm not able to find good resources …
13
votes
0answers
814 views
should we solve project Euler problems in SO? [closed]
I don't like the idea of solving project euler Qs as algorithm problems in stackoverflow.
Project euler is for enjoyment and to discover new areas of thinking you have and not to get the problems …
12
votes
10answers
850 views
Where do you go to tickle your brain [to get programming challenges]?
I am sure we all have some place to go to get our brain teased!
Sometimes i visit
Project Euler is a series of challenging mathematical/computer programming problems that will require more than …
10
votes
15answers
2k views
Is there a simple algorithm that can determine if X is prime, and not confuse a mere mortal programmer?
I have been trying to work my way through Project Euler, and have noticed a handful of problems ask for you to determine a prime number as part of it.
1) I know I can just divide x by 2, 3, 4, 5, …
9
votes
10answers
2k views
How do I check if a number is a palindrome?
Any language. Any algorithm (except making the number a string and then reversing the string).
Also, I actually have to do this, and I'll be posting my solution too.
8
votes
12answers
761 views
The lisp-way to solve Fibonnaci
I wanted to try and learn lisp, but I very quickly gave up. I figured I'd try again. I'm looking at Problem 2 on Project Euler - finding the sum of all the even Fibbonacci numbers under 4 Million.
…
8
votes
12answers
2k views
Quickest Method to Reverse in String in C#.net
Thank you for your entries. Here is my response.
I'm currently writing a quick solution for Euler Problem #4 where one must find the largest palindromic number from the product of two 3-digit …
8
votes
4answers
2k views
Finding Integers With A Certain Property - Project Euler Problem 221
I've become very addicted to Project Euler recently and am trying to do this one next! I've started some analysis on it and have reduced the problem down substantially already. Here's my working:
…
8
votes
4answers
624 views
Beginner practical programming problems?
Where can I find lists of practical programming problems for a novice? Something similar to http://www.projecteuler.net, but for practical problems.
I am asking for problems even less complex than …
