I use int.MaxValue as a penalty and sometimes I am computing the penalties together. Is there a function or how would you create one with the most grace and efficiency that does that.
ie.
50 + 100 = 150
int.Max + 50 = int.Max and not int.Min + 50
|
|
|
|
|
|
|
Update: If your penalties can be negative, this would be more appropriate:
|
|||
|
|
|
|
This answer...
fails the following test:
I would suggest implementing penaltySum() as follows:
Notice I'm passing in the max value, but you could hardcode in the int.MaxValue if you would like. Alternatively, you could force the arithmetic operation overflow check and do the following:
} |
||||
|
|
|
Does it overflow a lot, or is that an error condition? How about using try/catch (overflow exception)? |
||
|
|