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