Tagged Questions
The number-manipulation tag has no wiki summary.
1
vote
4answers
116 views
get the number of the reverse order of a given series
I want to get the number of the reverse order of a given series in javascript. If I have the following series:
[1,2,2,2,5,5,7,8,8,10]
then if the input is number 8 the output should be 2, since:
...
1
vote
3answers
372 views
How to break a number into different parts in Java?
I'm looking to do the following : let's say I have a number like 125.625 => I would like to be able to tell my program that is 1 * 100 + 2 * 10 + 5 * 1 + 0.625. How could I do that please ?
thanks
1
vote
6answers
290 views
rounding in base 10
I have a function to round a number given to the function to the nearest whole pence.
<script type='text/javascript'>
Math.roundNumber = function(a,b){
if(!isNaN(parseInt(a))){
c = ...
1
vote
4answers
2k views
Java Bit Operations (In Radix Sort)
The other day I decided to write an implementation of radix sort in Java. Radix sort is supposed to be O(k*N) but mine ended up being O(k^2*N) because of the process of breaking down each digit to one ...
0
votes
3answers
110 views
Reverse a number depending on the total number of digits
Is there a built-in function in javascript to reverse a number depending on the total number? if no how to implement it?
i.e.
number = 2;
total_number = 10;
__________________
answer = 9;
...