摘要:
860. 柠檬水找零 1 class Solution { 2 public: 3 bool lemonadeChange(vector<int>& bills) { 4 int five = 0; 5 int ten = 0; 6 int twenty = 0; 7 for(int i = 0; 阅读全文
摘要:
1005. K 次取反后最大化的数组和 按照绝对值大小排序,然后反转绝对值最大的复数并且k--,如果都大于0了并且k还是奇数,就把绝对值最小的反转,最后求和 1 class Solution { 2 public: 3 static bool compare(int a, int b){ 4 ret 阅读全文