21
votes
11answers
2k views
How to read values from numbers written as words?
As we all know numbers can be written either in numerics, or called by their names. While there are a lot of examples to be found that convert 123 into one hundred twenty three, I could not find good …
17
votes
7answers
2k views
Unique random numbers in O(1)?
The problem is this: I'd like to generate unique random numbers between 0 and 1000 that never repeat (I.E. 6 doesn't come out twice), but that doesn't resort to something like an O(N) search of …
14
votes
8answers
1k views
What is the best way to validate a credit card in PHP?
Given a credit card number and no additional information, what is the best way in PHP to determine whether or not it is a valid number?
Right now I need something that will work with American …
11
votes
19answers
1k views
Why do most languages not allow binary numbers?
Why do most computer programming languages not allow binary numbers to be used like decimal or hexadecimal?
In VB.NET you could write a hexadecimal number like &H4
In C you could write a …
11
votes
15answers
3k views
How to convert floats to human-readable fractions?
Let's say we have 0.33, we need to output "1/3".
If we have "0.4", we need to output "2/5".
The idea is to make it human-readable to make the user understand "x parts out of y" as a better way of …
9
votes
12answers
909 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 millions of times.
…
9
votes
10answers
814 views
Octal number literals: when? why? ever?
I have never used octal numbers in my code nor come across any code that used it (hexadecimal and bit twiddling notwithstanding).
I started programming in C/C++ about 1994 so maybe I'm too young for …
8
votes
5answers
439 views
PHP: intval() equivalent for numbers >= 2147483647
Hello!
In PHP 5, I use intval() whenever I get numbers as an input. This way, I want to ensure that I get no strings or floating numbers. My input numbers should all be in whole numbers. But when I …
7
votes
4answers
231 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
7
votes
10answers
383 views
Pi/Infinite Numbers
I'm curious about infinite numbers in computing, in particular pi.
For a computer to render a circle it would have to understand pi. But how can it if it is infinite?
Am I looking too much into …
7
votes
18answers
3k views
Most efficient code for the first 10000 prime numbers?
I want to print the first 10000 prime numbers.
Can anyone give me the most efficient code for this?
Clarifications:
It does not matter if your code is inefficient for n >10000.
The size of …
6
votes
9answers
167 views
Can coordinates of constructable points be represented exactly?
I'd like to write a program that lets users draw points, lines, and circles as though with a straightedge and compass. Then I want to be able to answer the question, "are these three points …
6
votes
8answers
577 views
Best algorithm for hashing number values?
When dealing with a series of numbers, and wanting to use hash results for security reasons, what would be the best way to generate a hash value from a given series of digits? Examples of input would …
6
votes
3answers
399 views
How to limit the maximum value of a numeric field in a Django model?
Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField. Although the former can be restricted to the number of decimal places stored and the overall …
6
votes
5answers
586 views
Godel, Escher, Bach Typographical Number Theory (TNT) puzzles and solutions
In chapter 8 of Godel, Escher, Bach by Douglas Hofstader, the reader is challenged to translate these 2 statements into TNT:
"b is a power of 2"
and
"b is a power of 10"
Are following answers …
