-1
votes
2answers
77 views
Reflectively determining if a member type is a number in C# [closed]
Possible Duplicate:
C# - how to determine whether a Type is a number
Are there any convenience methods for determining if a Type is the type of a number in C# ? I know t …
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" a …
5
votes
9answers
150 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 thr …
0
votes
4answers
112 views
Why doesn’t this division work in python?
>>> numerator = 29
>>> denom = 1009
>>> print str(float(numerator/denom))
0.0
I just want it to return a decimal...
4
votes
2answers
198 views
How to round *down* integers in Java?
I'd like to round integers down to their nearest 1000 in Java.
So for example:
13,623 rounds to 13,000
18,999 rounds to 18,000
etc
0
votes
5answers
135 views
Check if string contains only digits
Hello
I want to check if a string contains only digits. I used this:
var isANumber = isNaN(theValue) === false;
if (isANumber){
..
}
.. but realized that it also allows + …
0
votes
5answers
149 views
Java recursion phone number letters
How do you write a java program using a recursive method that takes in an int like "234" and converts this into the corresponding letters on a phone pad (2 = ABC, 3 = DEF, etc), an …
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 > …
7
votes
4answers
217 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
2
votes
6answers
120 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 …
9
votes
12answers
904 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 …
1
vote
1answer
113 views
How to format numbers according to locale in Haskell?
In Python I can use locale.format to pretty-print numbers according to locale setting:
>>> import locale
>>> locale.setlocale(locale.LC_ALL, "en_US.UTF-8")
'en_U …
0
votes
4answers
86 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 …
0
votes
5answers
185 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
…
2
votes
3answers
201 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 …
