1.1

From The Algorithm Design Manual Solution Wiki
Revision as of 16:15, 24 August 2020 by Algowikiadmin (talk | contribs)
Jump to navigation Jump to search

a + b < min(a,b) <-> a < 0 /\ b < 0

(find way to fix math symbols)


If both a and b are negative, a + b< min(a, b). For example

     a = -5
     b = -7
     a + b = -5 + (-7) = -12
     min(-5, -7) = -7


Back to Chapter 1