2
votes
3answers
139 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 …
1
vote
4answers
99 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 …
9
votes
12answers
856 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 will do tha …
2
votes
6answers
93 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
4answers
87 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) …
0
votes
3answers
74 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!
-5
votes
4answers
122 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
2answers
37 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
4answers
88 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
votes
2answers
88 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?
0
votes
3answers
67 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
1answer
78 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?
3
votes
3answers
111 views
When I divide numbers in clojure i get a fraction , how do I get the decimal?
When i do (/ 411 125) , i dont get it in terms of decimal, how do I do that?
3
votes
5answers
114 views
Do numbers need to be localized?
This seems like a stupid question. Is the number "10" refered to "10" in Hebrew, Arabic, and all languages? I'm not seeing anywhere where it says you need to do anything special …
4
votes
10answers
289 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 …
