Tagged Questions
The numbers tag has no wiki summary.
211
votes
18answers
256k views
Validate numbers in JavaScript - IsNumeric()
What's the cleanest, most effective way to validate decimal numbers in JavaScript?
Bonus points for:
Clarity. Solution should be clean and simple.
Cross-platform.
Test cases:
01. ...
60
votes
15answers
4k views
Algorithms based on number base systems?
I've noticed recently that there are a great many algorithms out there based in part or in whole on clever uses of numbers in creative bases. For example:
Binomial heaps are based on binary ...
43
votes
23answers
3k views
Interview Question, What do they want to accomplish?
I was on a technical job interview today, and it was time to give me some programming exercises.
I finally came to the last question:
Given the numbers:
116 104 105 115 32 105 115 32 99 111 114 114 ...
39
votes
10answers
6k 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 ...
27
votes
11answers
36k views
How to find serial number of Android device?
I need to use a unique ID for an Android app and I thought the serial number for the device would be a good candidate. How do I retrieve the serial number of an Android device in my app ?
27
votes
8answers
5k views
Out of curiosity: How are serial numbers generated? Hints, Algorithms?
I wondering about how serial number generators and validator work. My aim would be to generate a serial number with five parts consisting of numbers and letters only.
I enjoy coding as a hobby and ...
27
votes
12answers
3k 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 ...
26
votes
5answers
520 views
From a given number, work out the 3 numbers which which multiplied together will give that number, ensuring the 3 numbers are as close as possible
I have a number n, and I want to find three numbers which multiply together to give n but are as close to each other as possible. That is, if n = 12 then I'd like to get 3, 2, 2 as a result, as ...
26
votes
9answers
1k views
Tricky programming problem that I'm having trouble getting my head around
First off, let me say that this is not homework (I am an A-Level student, this is nothing close to what we problem solve (this is way harder)), but more of a problem I'm trying to suss out to improve ...
25
votes
21answers
9k 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 ...
24
votes
2answers
19k views
How do I show the number keyboard on an EditText in android
I just basically want to switch to the number pad mode as soon a certain EditText has the focus.
24
votes
8answers
5k 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 ...
21
votes
13answers
4k views
Generating non-repeating random numbers in Python
Ok this is one of those trickier than it sounds questions so I'm turning to stack overflow because I can't think of a good answer. Here is what I want: I need Python to generate a simple a list of ...
20
votes
6answers
4k views
Can I hide the HTML5 number input’s spin box?
Is there a consistent way across browsers to hide the new spin boxes that some browsers (such as Chrome) render for HTML input of type number? I am looking for a CSS or JavaScript method to prevent ...
19
votes
5answers
8k views
Generating random numbers in Javascript
How can I generate a random whole number between two specified variables in Javascript, e.g. x=4 and y=8 would output any of 4,5,6,7,8?
18
votes
12answers
1k views
Biggest number in computer ever
Just asked by my 5 year old kid: what is the biggest number in the computer?
We are not talking about max number for a specific data types, but the biggest number that a computer can represent.
...
18
votes
8answers
5k views
nth fibonacci number in sublinear time
Is there any algorithm to compute the nth fibonacci number in sub linear time?
17
votes
6answers
453 views
The shortest path between two integers by adding or subtracting 5, 7, and 12
Here's the description of this problem:
You are given two integers a and b. You want to find the shortest sequence of operations necessary to transform a into b, where at each step you are ...
17
votes
20answers
2k 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 ...
16
votes
4answers
17k views
How to convert a byte array to its numeric value (Java)?
I have an 8 byte array and I want to convert it to its corresponding numeric value.
e.g.
byte[] by = new byte[8]; // the byte array is stored in 'by'
// CONVERSION OPERATION
// return the numeric ...
15
votes
3answers
574 views
Is there a Java library for unsigned number type wrappers?
Obviously, Java doesn't support unsigned number types natively, and that's not going to change soon (comments starting in 2002). However, when working with databases, such as MySQL, they may come in ...
15
votes
12answers
2k 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 ...
14
votes
4answers
3k views
how to print number with commas as thousands separators in Javascript
I am trying to print an integer in Javascript with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? Here is how I am ...
14
votes
4answers
4k 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 ...
14
votes
6answers
8k views
Replace non-numeric with empty string
Quick add on requirement in our project. A field in our DB to hold a phone number is set to only allow 10 characters. So, if I get passed "(913)-444-5555" or anything else, is there a quick way to ...
13
votes
6answers
183 views
JavaScript type conversion: (true && 1) vs (true | | 1)
JavaScript is non-strictly typed language as Java,for example.
As we know, it converts value of result dependently upon context:
"2" + "3" results "23"
"2" * "3" results 6
This is quite clear and ...
13
votes
3answers
140 views
Objective-C: format numbers to ordinals: 1, 2, 3, .. to 1st, 2nd, 3rd
In Objective C, is there any way to format an integer to ordinals
1 => "1st", 2 => "2nd" etc... that works for any language?
So if the user is French he will see "1er", "2ieme" etc..
Thanks a lot!
...
13
votes
1answer
145 views
why are arabic numbers (١٢٣) not accepted in textboxes as real numbers?
while developing one of my sites, i noticed that if I enter arabic numbers (١٢٣), they are not interpreted as real number values. Then, I tested a few other sites only to find that they also don't ...
13
votes
5answers
11k views
Add comma to numbers every three digits using jQuery
jQuery plugin to add comma separating numbers into three digits without white spaces and if total digits are under three, then no comma added.
Ex. 2984 => 2,984 and 297312984 => 297,312,984 and 298 ...
13
votes
11answers
2k 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.
...
12
votes
4answers
884 views
How to write a function for generic numbers?
I'm quite new to F# and find type inference really is a cool thing. But currently it seems that it also may lead to code duplication, which is not a cool thing. I want to sum the digits of a number ...
12
votes
11answers
2k views
How does java do modulus calculations with negative numbers?
Am I doing modulus wrong? Because in Java -13 % 64 is supposed to evaluate to -13 but I get 51.
12
votes
7answers
7k views
JavaScript string and number conversion
How can I do the following in JavaScript?
Step (1) Concatenate "1", "2", "3" into "123"
Step (2) Convert "123" into 123
Step (3) Add 123 + 100 = 223
Step (4) Covert 223 into "223"
11
votes
1answer
166 views
Do all C++ STLs produce the same random numbers (for the same seed)?
do all C++ STLs produce the same random numbers (for the same seed)?
Does this hold for all platforms?
Is this specified somewhere?
Thanks!
Bjoern
11
votes
4answers
14k views
Android Number Picker Dialog
Does anyone have any dialogs that will allow a user to pick a number within a certain range? It seems like this would be a fairly common need, but I can't find a common dialog for it and I'd rather ...
11
votes
8answers
766 views
how to determine base of a number?
Given a integer number and its reresentation in some arbitrary number system. The purpose is to find the base of the number system. For example, number is 10 and representation is 000010, then the ...
11
votes
7answers
459 views
“Nearly divisible”
I want to check if a floating point value is "nearly" a multiple of 32. E.g. 64.1 is "nearly" divisible by 32, and so is 63.9.
Right now I'm doing this:
#define NEARLY_DIVISIBLE 0.1f
float offset = ...
11
votes
5answers
2k views
PHP: intval() equivalent for numbers >= 2147483647
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 get ...
11
votes
5answers
10k views
Large Numbers in Java
How would i go about doing calculations with extremely large numbers in Java? i have tried long but that maxes out at 9223372036854775807, and when using an integer it does not save enough digits and ...
10
votes
6answers
2k views
How to Generate Unique Number in C# of 8 digits?
I am using this code to generate a 8 digit unique number.
byte[] buffer = Guid.NewGuid().ToByteArray();
return BitConverter.ToUInt32(buffer, 8).ToString();
Does this code really generate a unique ...
10
votes
4answers
1k views
Minimum values and Double.MIN_VALUE in Java?
Can anyone shed some light on why Double.MIN_VALUE is not actually the minimum value that Doubles can take?
I understand why it's a useful number, but it seems a very unintuitive name, especially ...
10
votes
7answers
2k views
Convert a number from Base B1 to Base B2 without using any intermediate base
Is there a way Convert a number from Base B1 to Base B2 without using any intermediate base.
Ex:
214 from base 5 to base 16 without converting it first to decimal and then decimal to hexadecimal.
...
10
votes
5answers
530 views
Python: most pythonic way to check if an object is a number
Given an arbitrary python object, what's the best way to determine whether it is a number? Here is is defined as acts like a number in certain circumstances.
For example, say you are writing a vector ...
10
votes
2answers
3k views
Format file size as MB, GB etc
I need to display a file size as String using sensible units.
e.g.
1L ==> "1 B";
1024L ==> "1 KB";
2537253L ==> "2.3 MB"
etc.
I found this previous answer, which I didn't find ...
10
votes
7answers
316 views
help with number calculation algorithm [hw]
I'm working on a hw problem that asks me this:
given a finite set of numbers, and a target number, find if the set can be used to calculate the target number using basic math operations (add, sub, ...
10
votes
9answers
342 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 ...
10
votes
4answers
2k views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
9
votes
3answers
127 views
How does x|0 floor the number in JavaScript?
In the accepted answer on my earlier question
( What is the fastest way to generate a random integer in javascript? ), I was wondering how this:
var x = 5.12042;
x = x|0;
floors the number to 5?
...
9
votes
2answers
193 views
Handle arbitrary length integers in C++
Can someone tell me of a good C++ library for handling (doing operations etc...) with arbitrarily large numbers (it can be a library that handles arbitrary precision floats too, but handling integers ...
9
votes
4answers
231 views
Number.sign() in javascript
Wonder if there are any nontrivial ways of finding number's sign?
May be shorter / faster / more elegant solutions than the obvious one
var sign = number > 0 ? 1 : number < 0 ? -1 : 0;
...