leetcodeSolution to some Leetcode problems written in C++ |
git clone git://git.dimitrijedobrota.com/leetcode.git |
Log | Files | Refs | README | LICENSE | |
0610.sql (104B)
1 SELECT x, y, z, 2 IF(x + y > z AND x + z > y AND y + z > x, "Yes", "No") as triangle 3 FROM Triangle