7
votes
4answers
180 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
9
votes
12answers
895 views
Fastest way to separate the digits of an int into an array in .NET?
I want to separate the digits of an integer, say 12345, into an array of bytes {1,2,3,4,5}, but I want the most performance effective way to do that, because my program does that m …
0
votes
4answers
80 views
C# Numeric formatting question
Hi, I have these numbers:
5.25
10251.35
5
and I want them to be formatted with groups and always with 2 decimals ,XX
this is what .ToString("N2") does:
5,25
10.251,35
5
How …
2
votes
3answers
199 views
How to convert numbers to words in Erlang?
I found this interesting question about converting numbers into "words":
http://stackoverflow.com/questions/309884/code-golf-number-to-words
I would really like to see how you wo …
2
votes
6answers
115 views
How many possible URLs can you make with the following characters?
I want to make a short URL service for 2 million assets but I want to use the shortest number of possible characters.
What is the math equation that I would need to use to figure …
0
votes
5answers
166 views
Regex - Match only letters, numbers, and one space between each word
How can I create a regex expression which will match only letters and numbers, and one space between each word?
Good Examples:
Amazing
Hello Beautiful World
I am 13 years old
…
1
vote
4answers
106 views
Using the right numeric data type
After becoming more engaged with training new engineers as well as reading Jon Skeet's DevDays presentation I have begun to recognize many engineers aren't clear when to use which …
0
votes
4answers
97 views
Getting Unique Number Combinations
Is it possible without using exponentiation to have a set of numbers that when added together, always give unique sum?
I know it can be done with exponentiation (see first answer) …
-1
votes
2answers
111 views
PHP Random Numbers
i need to print out numbers 1-100 in a random order. the print statement should be:
echo 'h{'.$num.'}';
what is the shortest code to do this?
-5
votes
4answers
126 views
Another math question [closed]
500
+ 300
+ 100
= 900
But is there a way to find out which three numbers I added to get 900 without knowing each of the addends?
0
votes
3answers
98 views
Animated numbers (semi-countdown) with JQuery?
I am trying to make a numerical value, say 5000, quickly change to another value, say 4000, using JQuery. Right now I do this fine using:
mod(".class",4000,"add");
function mod( …
0
votes
2answers
44 views
PHP integer exponentiation (super large numbers)
Using PHP I want to do millions of 2^n exponentiation but so far I only got up to n^1023 before PHP printed INF.
Any ideas?
0
votes
3answers
88 views
Permutations of a given set of numbers
Can someone please explain a good algorithm to find the permutations of a given set of numbers?
Thank you!
4
votes
10answers
307 views
Generate two numbers that are NOT equal in PHP
Hello everyone!
I need to generate two numbers that are NOT equal in PHP.
I know that I use $random1 = (rand()%9); to generate random a number between 0-9. I need to add somethin …
0
votes
1answer
117 views
Code to generate Permutations for a given set of numbers efficiently C#
Can anyone please write or give me a link where I can find the C# code to list all the permutations for a give set of numbers in the most efficient manner?
