摘要: Suppose LeetCode will start its IPO soon. In order to sell a good price of its shares to Venture Capital, LeetCode would like to work on some projects 阅读全文
posted @ 2018-12-20 22:06 Veritas_des_Liberty 阅读(367) 评论(0) 推荐(0)
摘要: Given an m x n matrix of positive integers representing the height of each unit cell in a 2D elevation map, compute the volume of water it is able to 阅读全文
posted @ 2018-12-20 18:20 Veritas_des_Liberty 阅读(231) 评论(0) 推荐(0)
摘要: #include #include class CArray { int size; int *ptr; public: CArray(int s = 0); CArray(CArray& a); ~CArray(); void push_back(int v); CArray& operator=(const CArray& a)... 阅读全文
posted @ 2018-12-20 17:51 Veritas_des_Liberty 阅读(594) 评论(0) 推荐(0)