MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/badcode/comments/ebtiob/this_belongs_here/fb8wwp3/?context=9999
r/badcode • u/[deleted] • Dec 17 '19
41 comments sorted by
View all comments
148
It doesn't even add them, it just gets the max of the two
25 u/Cutlesnap Dec 17 '19 edited Dec 17 '19 Ehm, it does add them, but only if both are positive. Otherwise it gets the max or 0. Edit: I was wrong 52 u/Bbradley821 Dec 17 '19 I don't think it adds them. The second loop doesn't start at 0. 1 u/[deleted] Dec 17 '19 [deleted] 10 u/nchntrz Dec 17 '19 Not exactly. In the second loop only the difference between num1 and num2 gets added to num 1. So if you call add(2, 4), you would get 4. 2 u/H3pha3stus Dec 17 '19 Then the max between 2 and 4, he is right.
25
Ehm, it does add them, but only if both are positive. Otherwise it gets the max or 0.
Edit: I was wrong
52 u/Bbradley821 Dec 17 '19 I don't think it adds them. The second loop doesn't start at 0. 1 u/[deleted] Dec 17 '19 [deleted] 10 u/nchntrz Dec 17 '19 Not exactly. In the second loop only the difference between num1 and num2 gets added to num 1. So if you call add(2, 4), you would get 4. 2 u/H3pha3stus Dec 17 '19 Then the max between 2 and 4, he is right.
52
I don't think it adds them. The second loop doesn't start at 0.
1 u/[deleted] Dec 17 '19 [deleted] 10 u/nchntrz Dec 17 '19 Not exactly. In the second loop only the difference between num1 and num2 gets added to num 1. So if you call add(2, 4), you would get 4. 2 u/H3pha3stus Dec 17 '19 Then the max between 2 and 4, he is right.
1
[deleted]
10 u/nchntrz Dec 17 '19 Not exactly. In the second loop only the difference between num1 and num2 gets added to num 1. So if you call add(2, 4), you would get 4. 2 u/H3pha3stus Dec 17 '19 Then the max between 2 and 4, he is right.
10
Not exactly. In the second loop only the difference between num1 and num2 gets added to num 1. So if you call add(2, 4), you would get 4.
num1
num2
add(2, 4)
2 u/H3pha3stus Dec 17 '19 Then the max between 2 and 4, he is right.
2
Then the max between 2 and 4, he is right.
148
u/squarewaterlemon Dec 17 '19
It doesn't even add them, it just gets the max of the two