From 4f7083268383beaecd54d495ac9f5fba1e840096 Mon Sep 17 00:00:00 2001 From: JiayangWu <530081999@qq.com> Date: Tue, 3 Mar 2020 14:09:24 -0500 Subject: [PATCH] 2020-03-03 --- ...345\272\217\347\232\204\346\225\260\347\273\204.py" | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 "\351\235\242\350\257\225\351\242\230 10.01.\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204/\351\235\242\350\257\225\351\242\230 10.01-\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204.py" diff --git "a/\351\235\242\350\257\225\351\242\230 10.01.\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204/\351\235\242\350\257\225\351\242\230 10.01-\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204.py" "b/\351\235\242\350\257\225\351\242\230 10.01.\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204/\351\235\242\350\257\225\351\242\230 10.01-\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204.py" new file mode 100644 index 0000000..10722e8 --- /dev/null +++ "b/\351\235\242\350\257\225\351\242\230 10.01.\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204/\351\235\242\350\257\225\351\242\230 10.01-\345\220\210\345\271\266\346\216\222\345\272\217\347\232\204\346\225\260\347\273\204.py" @@ -0,0 +1,10 @@ +class Solution(object): + def merge(self, A, m, B, n): + """ + :type A: List[int] + :type m: int + :type B: List[int] + :type n: int + :rtype: None Do not return anything, modify A in-place instead. + """ + A[:] = sorted(A[:m] + B) \ No newline at end of file