Tagged Questions
26
votes
11answers
2k views
Why is subtraction faster than addition in Python?
I was optimising some Python code, and tried the following experiment:
import time
start = time.clock()
x = 0
for i in range(10000000):
x += 1
end = time.clock()
print '+=',end-start
start = ...
2
votes
2answers
464 views
Ruby- Adding/subtracting elements from one array with another array
I do this:
a = [1,2,3,4]
b = [2,3,4,5]
c = b - a
put c
I get this
answer -> [1]
I want this answer -> [1,1,1,1] (like matrix addition/subtraction)
I tried this:
c.each {|e| c[e] = b[e] - ...
1
vote
2answers
34 views
Merging maps by adding/subtracting corresponding values
I have been wondering for a few days now, what could be the least messy approach to my problem. I have a set of 10 enum types e.g. { ZERO, ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT, NINE } and I ...
1
vote
4answers
49 views
Numeric values rounding down unexpectedly
I have a loop that calculates a couple revenue values then adds them together, like this:
$SalesGrowth = $C2012Sales+$C2011Sales;
In some cases, this works, and I get the expected, e.g.: 761.9 + ...
1
vote
6answers
104 views
Subtract and add two lists without changing their order in Python
If I have the list [68,31,93,35,10] (all the numbers will be different) and the list [93,0,22,10,99,33,21,9] (again, all the numbers will be different, but may overlap the other list), I need to be ...
-2
votes
3answers
118 views
Delphi: Addition and subtraction
I want to add and subtract numbers on a Delphi form. I have two buttons, one marked "+" and one marked "-".
If you click on the "+" button, obviously, it needs to add a number to a pre-existing value ...
-3
votes
1answer
49 views
Arithmetic with only 16-bit signed words
I am trying to perform arithmetic using only 16-bit signed words. I need to be able to perform addition, multiplication, etc.
As an example I need to subtract two data values, below is an example:
...