소스 검색

Update solution

master
Lachlan Jacob 5 년 전
부모
커밋
db5588b2e6
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    2
      problems/88/main.cpp

+ 1
- 2
problems/88/main.cpp 파일 보기

@@ -3,7 +3,6 @@
#include <algorithm>

void merge(std::vector<int>& nums1, int m, std::vector<int>& nums2, int n) {
int total = m + n;
while (n > 0) {
nums1[m++] = nums2[--n];
}
@@ -21,4 +20,4 @@ int main() {
}
std::cout << " ]" << std::endl;
return 0;
}
}

Loading…
취소
저장