Priya Ahuja

Greenhorn
+ Follow
since Mar 22, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Priya Ahuja

Thanks Michael
How about for the subtraction...
Do I have to do just change the sign like below
return Integer.parseInt(sb1.reverse().toString()) - Integer.parseInt(sb2.reverse().toString());
20 years ago
I don't know how easy or hard this is, but I am so confused and cannot think of it.
I have two arrays in reverse order.
So basically
Array a[]=321 ( ie the number is 123)
Array b[] = 9001 (i.e the number is 1009)
So I have to make a add method which accepts these two arrays as arguments.
Then I add those two numbers and return the value in string or an array, doesn't matter.
How do I do add and subtract method for this problem. As I have to make sure about the carry digit as if we add 9 and 3 its 12, so 1 is carry or so.
I hope you guys/gals understand my problem and if you have any questions then please let me know
Thanks in advance
Priya
20 years ago