-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitbatlog.txt
3431 lines (3057 loc) · 138 KB
/
gitbatlog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
12/07/2021 Tue 20:33:39.00
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: 100_SameTree.py
modified: 94_BinartTreeInorderTraversal.py
modified: LeetcodeNote.md
new file: a.txt
new file: gitbatlog.txt
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: a.txt
modified: gitbatlog.txt
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master d377c3a] mostly Leetcode problems solved, commited and pushed by bat
5 files changed, 144 insertions(+), 11 deletions(-)
create mode 100644 a.txt
create mode 100644 gitbatlog.txt
git push origin master
12/07/2021 Tue 20:35:03.08
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: a.txt
modified: gitbatlog.txt
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 721cfb2] mostly Leetcode problems solved, commited and pushed by bat
2 files changed, 9 insertions(+), 33 deletions(-)
git push origin master
12/09/2021 Thu 14:26:31.25
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
gitSync.bat
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 37e8695] mostly Leetcode problems solved, commited and pushed by bat
3 files changed, 48 insertions(+)
create mode 100644 gitSync.bat
git push origin master
12/10/2021 Fri 22:26:01.19
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: 100_SameTree.py
modified: 94_BinartTreeInorderTraversal.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
101_SymmetricTree.py
203_RemoveLinkedListElement.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master b1a7416] mostly Leetcode problems solved, commited and pushed by bat
6 files changed, 116 insertions(+), 16 deletions(-)
create mode 100644 101_SymmetricTree.py
create mode 100644 203_RemoveLinkedListElement.py
git push origin master
12/11/2021 Sat 22:02:59.35
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
104_MaximumDepthofBinaryTree.py
108_ConvertSotedArraytoBinarySearchTree.py
110_BalancedBinaryTree.py
111_MinimumDepthofBinaryTree.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master dcf0a47] mostly Leetcode problems solved, commited and pushed by bat
7 files changed, 172 insertions(+), 1 deletion(-)
create mode 100644 104_MaximumDepthofBinaryTree.py
create mode 100644 108_ConvertSotedArraytoBinarySearchTree.py
create mode 100644 110_BalancedBinaryTree.py
create mode 100644 111_MinimumDepthofBinaryTree.py
git push origin master
21.12.14 周二 15:50:22.42
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: Drafts.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
807_MaxIncreasetoKeepCitySkyline.py
938_RangeSumofBST.py
Unfinished_112_PathSum.py
Unfinished_416_PartitionEqualSubsetSum.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 3a18af7] mostly Leetcode problems solved, commited and pushed by bat
7 files changed, 263 insertions(+), 72 deletions(-)
create mode 100644 807_MaxIncreasetoKeepCitySkyline.py
create mode 100644 938_RangeSumofBST.py
rewrite Drafts.py (98%)
create mode 100644 Unfinished_112_PathSum.py
create mode 100644 Unfinished_416_PartitionEqualSubsetSum.py
git push origin master
21.12.17 周五 12:31:16.73
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: LeetcodeNote.md
deleted: Unfinished_112_PathSum.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
112_PathSum.py
118 _PascalsTriangle.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master dcf7c70] mostly Leetcode problems solved, commited and pushed by bat
6 files changed, 85 insertions(+), 25 deletions(-)
create mode 100644 112_PathSum.py
create mode 100644 118 _PascalsTriangle.py
delete mode 100644 Unfinished_112_PathSum.py
git push origin master
2022.01.08 周六 13:25:40.64
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
1015_SmallestDivisiblebyK.py
U_394_DecodeString.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 2e1d118] mostly Leetcode problems solved, commited and pushed by bat
4 files changed, 96 insertions(+)
create mode 100644 1015_SmallestDivisiblebyK.py
create mode 100644 U_394_DecodeString.py
git push origin master
2022.02.27 周日 16:03:27.83
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
U_1994_TheNumberofGoodSubsets.py
U_300_LongestIncreasingSubsequence.py
U_42_TrappingRainWater.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 8083291] mostly Leetcode problems solved, commited and pushed by bat
6 files changed, 109 insertions(+), 1 deletion(-)
create mode 100644 U_1994_TheNumberofGoodSubsets.py
create mode 100644 U_300_LongestIncreasingSubsequence.py
create mode 100644 U_42_TrappingRainWater.py
git push origin master
2022.03.08 周二 16:04:44.88
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
206_ReverseLinkedList copy.py
206_ReverseLinkedList.py
CodeTop.md
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 65ae9a3] mostly Leetcode problems solved, commited and pushed by bat
5 files changed, 115 insertions(+)
create mode 100644 206_ReverseLinkedList copy.py
create mode 100644 206_ReverseLinkedList.py
create mode 100644 CodeTop.md
git push origin master
2022.03.10 周四 16:12:12.30
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: 206_ReverseLinkedList.py
modified: 21_MergeTwoSortedLists.py
modified: 53_MaximumSubarray.py
modified: U_121_BestTimetoBuyandSellStock.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
Playground.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 53adbba] mostly Leetcode problems solved, commited and pushed by bat
7 files changed, 114 insertions(+), 30 deletions(-)
rewrite 53_MaximumSubarray.py (70%)
create mode 100644 Playground.py
git push origin master
2022.03.11 周五 22:19:04.58
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: CodeTop.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
141_LinkedListCycle.py
160_IntersectionofTwoLinkedLists.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master e7f4d8d] mostly Leetcode problems solved, commited and pushed by bat
5 files changed, 112 insertions(+)
create mode 100644 141_LinkedListCycle.py
create mode 100644 160_IntersectionofTwoLinkedLists.py
git push origin master
2022.03.12 周六 21:36:05.65
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: 160_IntersectionofTwoLinkedLists.py
modified: CodeTop.md
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
206_ReverseLinkedList.cc
U_138_CopyListwithRandomPointer.cc
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 4f3f47a] mostly Leetcode problems solved, commited and pushed by bat
7 files changed, 273 insertions(+), 49 deletions(-)
rewrite 160_IntersectionofTwoLinkedLists.py (76%)
create mode 100644 206_ReverseLinkedList.cc
create mode 100644 U_138_CopyListwithRandomPointer.cc
git push origin master
2022.03.13 周日 16:05:13.50
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: CodeTop.md
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
.vscode/
1_TwoSum.cc
20_ValidParentheses.cc
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master dec250c] mostly Leetcode problems solved, commited and pushed by bat
7 files changed, 126 insertions(+)
create mode 100644 .vscode/settings.json
create mode 100644 1_TwoSum.cc
create mode 100644 20_ValidParentheses.cc
git push origin master
2022.03.16 周三 13:41:21.54
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: 206_ReverseLinkedList copy.py
deleted: 88_MergeSortedArray.py
modified: CodeTop.md
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
1249_MinimumRemoveToMakeValidParenthesis.py
71_SimplifyPath.py
U_88_MergeSortedArray.cc
U_88_MergeSortedArray.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 1ed48a9] mostly Leetcode problems solved, commited and pushed by bat
9 files changed, 171 insertions(+), 26 deletions(-)
create mode 100644 1249_MinimumRemoveToMakeValidParenthesis.py
delete mode 100644 206_ReverseLinkedList copy.py
create mode 100644 71_SimplifyPath.py
create mode 100644 U_88_MergeSortedArray.cc
rename 88_MergeSortedArray.py => U_88_MergeSortedArray.py (96%)
git push origin master
2022.03.18 周五 22:40:35.17
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: CodeTop.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
946_ValidateStackSequences.py
U_316_RemoveDuplicateLetters.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 30c307a] mostly Leetcode problems solved, commited and pushed by bat
5 files changed, 113 insertions(+)
create mode 100644 946_ValidateStackSequences.py
create mode 100644 U_316_RemoveDuplicateLetters.py
git push origin master
2022.03.19 周六 22:40:47.66
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: a.txt
modified: gitbatlog.txt
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master a2c87ef] mostly Leetcode problems solved, commited and pushed by bat
2 files changed, 22 insertions(+)
git push origin master
2022.03.21 周一 18:32:08.58
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: 1249_MinimumRemoveToMakeValidParenthesis.py
modified: 26_RemoveDuplicatesfromSortedArray.py
deleted: 946_ValidateStackSequences.py
modified: CodeTop.md
modified: LeetcodeNote.md
modified: U_88_MergeSortedArray.cc
deleted: U_88_MergeSortedArray.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
88_MergeSortedArray.py
U_1249_MinimumRemoveToMakeValidParenthesis.py
U_946_ValidateStackSequences.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 86f08a5] mostly Leetcode problems solved, commited and pushed by bat
9 files changed, 72 insertions(+), 19 deletions(-)
rename U_88_MergeSortedArray.py => 88_MergeSortedArray.py (64%)
rename 1249_MinimumRemoveToMakeValidParenthesis.py => U_1249_MinimumRemoveToMakeValidParenthesis.py (100%)
rename 946_ValidateStackSequences.py => U_946_ValidateStackSequences.py (100%)
git push origin master
2022.03.22 周二 11:41:35.56
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: CodeTop.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
141_LinkedListCycle.cc
142_LinkedListCycleII.cc
19_RemoveNthNodeFromEndofList.cc
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 7de3ad7] mostly Leetcode problems solved, commited and pushed by bat
6 files changed, 155 insertions(+), 1 deletion(-)
create mode 100644 141_LinkedListCycle.cc
create mode 100644 142_LinkedListCycleII.cc
create mode 100644 19_RemoveNthNodeFromEndofList.cc
git push origin master
2022.03.22 周二 12:08:02.04
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: 100_SameTree.py
deleted: 1015_SmallestDivisiblebyK.py
deleted: 101_SymmetricTree.py
deleted: 104_MaximumDepthofBinaryTree.py
deleted: 108_ConvertSotedArraytoBinarySearchTree.py
deleted: 110_BalancedBinaryTree.py
deleted: 111_MinimumDepthofBinaryTree.py
deleted: 112_PathSum.py
deleted: 118 _PascalsTriangle.py
deleted: 119_PascalsTriangleII.py
deleted: 1217_MinimumCosttoMoveChipstoTheSamePosition.py
deleted: 1290_ConvertBinaryNumberinaLinkedListtoInterger.py
deleted: 13_RomantoInteger.py
deleted: 141_LinkedListCycle.cc
deleted: 141_LinkedListCycle.py
deleted: 142_LinkedListCycleII.cc
deleted: 14_LongestCommonPrefix.py
deleted: 160_IntersectionofTwoLinkedLists.py
deleted: 167_TwoSumII_InputArrayisSorted.py
deleted: 19_RemoveNthNodeFromEndofList.cc
deleted: 1_TwoSum.cc
deleted: 1_TwoSum.py
deleted: 203_RemoveLinkedListElement.py
deleted: 206_ReverseLinkedList.cc
deleted: 206_ReverseLinkedList.py
deleted: 20_ValidParentheses.cc
deleted: 20_ValidParentheses.py
deleted: 21_MergeTwoSortedLists.py
deleted: 231_PowerofTwo.py
deleted: 26_RemoveDuplicatesfromSortedArray.py
deleted: 278_FirstBadVersion.py
deleted: 27_RemoveElement.py
deleted: 283_MoveZeros.py
deleted: 28_ImplementstrStr().py
deleted: 2_AddTwoNumbers.py
deleted: 344_ReverseString.py
deleted: 35_SearchInsertPosition.py
deleted: 372_SuperPow.py
deleted: 53_MaximumSubarray.py
deleted: 557_ReverseWordsinaStringIII.py
deleted: 58_LengthofLastWord.py
deleted: 66_PlusOne.py
deleted: 67_AddBinary.py
deleted: 69_Sqrtx.py
deleted: 704_BinarySearch.py
deleted: 70_ClimbingStars.py
deleted: 71_SimplifyPath.py
deleted: 7_ReverseInteger.py
deleted: 807_MaxIncreasetoKeepCitySkyline.py
deleted: 83_RemoveDuplicatesfromSortedList.py
deleted: 88_MergeSortedArray.py
deleted: 938_RangeSumofBST.py
deleted: 94_BinartTreeInorderTraversal.py
deleted: 977_SquaresofaSortedArray.py
deleted: 9_PalindromeNumber.py
deleted: BFS&DFS.py
deleted: BinarySearch.py
modified: CodeTop.md
deleted: Dict&Set.py
deleted: Drafts.py
modified: LeetcodeNote.md
deleted: Playground.py
deleted: QuickSort.py
deleted: Recursion.py
deleted: SelectionSort.py
deleted: U_1200_MinimumAbsoluteDifference.py
deleted: U_121_BestTimetoBuyandSellStock.py
deleted: U_1249_MinimumRemoveToMakeValidParenthesis.py
deleted: U_138_CopyListwithRandomPointer.cc
deleted: U_1994_TheNumberofGoodSubsets.py
deleted: U_300_LongestIncreasingSubsequence.py
deleted: U_316_RemoveDuplicateLetters.py
deleted: U_394_DecodeString.py
deleted: U_42_TrappingRainWater.py
deleted: U_88_MergeSortedArray.cc
deleted: U_946_ValidateStackSequences.py
deleted: Unfinished_416_PartitionEqualSubsetSum.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
AlgorithmScript/
LeetCode/
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 9ad0438] mostly Leetcode problems solved, commited and pushed by bat
79 files changed, 339 insertions(+), 230 deletions(-)
rename BFS&DFS.py => AlgorithmScript/BFS&DFS.py (100%)
rename BinarySearch.py => AlgorithmScript/BinarySearch.py (100%)
rename Dict&Set.py => AlgorithmScript/Dict&Set.py (100%)
rename Drafts.py => AlgorithmScript/Drafts.py (100%)
rename Playground.py => AlgorithmScript/Playground.py (100%)
rename QuickSort.py => AlgorithmScript/QuickSort.py (100%)
rename Recursion.py => AlgorithmScript/Recursion.py (100%)
rename SelectionSort.py => AlgorithmScript/SelectionSort.py (100%)
rename 100_SameTree.py => LeetCode/100_SameTree.py (100%)
rename 1015_SmallestDivisiblebyK.py => LeetCode/1015_SmallestDivisiblebyK.py (100%)
rename 101_SymmetricTree.py => LeetCode/101_SymmetricTree.py (100%)
rename 104_MaximumDepthofBinaryTree.py => LeetCode/104_MaximumDepthofBinaryTree.py (100%)
rename 108_ConvertSotedArraytoBinarySearchTree.py => LeetCode/108_ConvertSotedArraytoBinarySearchTree.py (100%)
rename 110_BalancedBinaryTree.py => LeetCode/110_BalancedBinaryTree.py (100%)
rename 111_MinimumDepthofBinaryTree.py => LeetCode/111_MinimumDepthofBinaryTree.py (100%)
rename 112_PathSum.py => LeetCode/112_PathSum.py (100%)
rename 118 _PascalsTriangle.py => LeetCode/118 _PascalsTriangle.py (100%)
rename 119_PascalsTriangleII.py => LeetCode/119_PascalsTriangleII.py (100%)
rename 1217_MinimumCosttoMoveChipstoTheSamePosition.py => LeetCode/1217_MinimumCosttoMoveChipstoTheSamePosition.py (100%)
rename 1290_ConvertBinaryNumberinaLinkedListtoInterger.py => LeetCode/1290_ConvertBinaryNumberinaLinkedListtoInterger.py (100%)
rename 13_RomantoInteger.py => LeetCode/13_RomantoInteger.py (100%)
rename 141_LinkedListCycle.cc => LeetCode/141_LinkedListCycle.cc (100%)
rename 141_LinkedListCycle.py => LeetCode/141_LinkedListCycle.py (100%)
rename 142_LinkedListCycleII.cc => LeetCode/142_LinkedListCycleII.cc (100%)
rename 14_LongestCommonPrefix.py => LeetCode/14_LongestCommonPrefix.py (100%)
rename 160_IntersectionofTwoLinkedLists.py => LeetCode/160_IntersectionofTwoLinkedLists.py (100%)
rename 167_TwoSumII_InputArrayisSorted.py => LeetCode/167_TwoSumII_InputArrayisSorted.py (100%)
rename 19_RemoveNthNodeFromEndofList.cc => LeetCode/19_RemoveNthNodeFromEndofList.cc (100%)
rename 1_TwoSum.cc => LeetCode/1_TwoSum.cc (100%)
rename 1_TwoSum.py => LeetCode/1_TwoSum.py (100%)
rename 203_RemoveLinkedListElement.py => LeetCode/203_RemoveLinkedListElement.py (100%)
rename 206_ReverseLinkedList.cc => LeetCode/206_ReverseLinkedList.cc (100%)
rename 206_ReverseLinkedList.py => LeetCode/206_ReverseLinkedList.py (100%)
rename 20_ValidParentheses.cc => LeetCode/20_ValidParentheses.cc (100%)
rename 20_ValidParentheses.py => LeetCode/20_ValidParentheses.py (100%)
rename 21_MergeTwoSortedLists.py => LeetCode/21_MergeTwoSortedLists.py (100%)
rename 231_PowerofTwo.py => LeetCode/231_PowerofTwo.py (100%)
rename 26_RemoveDuplicatesfromSortedArray.py => LeetCode/26_RemoveDuplicatesfromSortedArray.py (100%)
rename 278_FirstBadVersion.py => LeetCode/278_FirstBadVersion.py (100%)
rename 27_RemoveElement.py => LeetCode/27_RemoveElement.py (100%)
rename 283_MoveZeros.py => LeetCode/283_MoveZeros.py (100%)
rename 28_ImplementstrStr().py => LeetCode/28_ImplementstrStr().py (100%)
rename 2_AddTwoNumbers.py => LeetCode/2_AddTwoNumbers.py (100%)
rename 344_ReverseString.py => LeetCode/344_ReverseString.py (100%)
rename 35_SearchInsertPosition.py => LeetCode/35_SearchInsertPosition.py (100%)
rename 372_SuperPow.py => LeetCode/372_SuperPow.py (100%)
rename 53_MaximumSubarray.py => LeetCode/53_MaximumSubarray.py (100%)
rename 557_ReverseWordsinaStringIII.py => LeetCode/557_ReverseWordsinaStringIII.py (100%)
rename 58_LengthofLastWord.py => LeetCode/58_LengthofLastWord.py (100%)
rename 66_PlusOne.py => LeetCode/66_PlusOne.py (100%)
rename 67_AddBinary.py => LeetCode/67_AddBinary.py (100%)
rename 69_Sqrtx.py => LeetCode/69_Sqrtx.py (100%)
rename 704_BinarySearch.py => LeetCode/704_BinarySearch.py (100%)
rename 70_ClimbingStars.py => LeetCode/70_ClimbingStars.py (100%)
rename 71_SimplifyPath.py => LeetCode/71_SimplifyPath.py (100%)
rename 7_ReverseInteger.py => LeetCode/7_ReverseInteger.py (100%)
rename 807_MaxIncreasetoKeepCitySkyline.py => LeetCode/807_MaxIncreasetoKeepCitySkyline.py (100%)
rename 83_RemoveDuplicatesfromSortedList.py => LeetCode/83_RemoveDuplicatesfromSortedList.py (100%)
rename 88_MergeSortedArray.py => LeetCode/88_MergeSortedArray.py (100%)
rename 938_RangeSumofBST.py => LeetCode/938_RangeSumofBST.py (100%)
rename 94_BinartTreeInorderTraversal.py => LeetCode/94_BinartTreeInorderTraversal.py (100%)
rename 977_SquaresofaSortedArray.py => LeetCode/977_SquaresofaSortedArray.py (100%)
rename 9_PalindromeNumber.py => LeetCode/9_PalindromeNumber.py (100%)
rename U_1200_MinimumAbsoluteDifference.py => LeetCode/U_1200_MinimumAbsoluteDifference.py (100%)
rename U_121_BestTimetoBuyandSellStock.py => LeetCode/U_121_BestTimetoBuyandSellStock.py (100%)
rename U_1249_MinimumRemoveToMakeValidParenthesis.py => LeetCode/U_1249_MinimumRemoveToMakeValidParenthesis.py (100%)
rename U_138_CopyListwithRandomPointer.cc => LeetCode/U_138_CopyListwithRandomPointer.cc (100%)
rename U_1994_TheNumberofGoodSubsets.py => LeetCode/U_1994_TheNumberofGoodSubsets.py (100%)
rename U_300_LongestIncreasingSubsequence.py => LeetCode/U_300_LongestIncreasingSubsequence.py (100%)
rename U_316_RemoveDuplicateLetters.py => LeetCode/U_316_RemoveDuplicateLetters.py (100%)
rename U_394_DecodeString.py => LeetCode/U_394_DecodeString.py (100%)
rename U_42_TrappingRainWater.py => LeetCode/U_42_TrappingRainWater.py (100%)
rename U_88_MergeSortedArray.cc => LeetCode/U_88_MergeSortedArray.cc (100%)
rename U_946_ValidateStackSequences.py => LeetCode/U_946_ValidateStackSequences.py (100%)
rename Unfinished_416_PartitionEqualSubsetSum.py => LeetCode/Unfinished_416_PartitionEqualSubsetSum.py (100%)
rewrite LeetcodeNote.md (85%)
git push origin master
2022.03.23 周三 22:57:12.07
git status
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: CodeTop.md
modified: LeetCode/19_RemoveNthNodeFromEndofList.cc
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LeetCode/237_DeleteNodeinaLinkedList.cc
LeetCode/415_AddStrings.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master e1613fe] mostly Leetcode problems solved, commited and pushed by bat
7 files changed, 167 insertions(+), 82 deletions(-)
create mode 100644 LeetCode/237_DeleteNodeinaLinkedList.cc
create mode 100644 LeetCode/415_AddStrings.py
rewrite a.txt (98%)
git push origin master
2022.03.25 周五 21:49:01.35
git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: .vscode/settings.json
modified: CodeTop.md
modified: LeetCode/415_AddStrings.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LeetCode/415_AddStrings.cc
LeetCode/670_MaximumSwap.py
LeetCode/876_MiddleoftheLinkedList.py
LeetCode/ali3.py
LeetCode/slidewindow.py
LeetCode/test.cc
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master d45d34b] mostly Leetcode problems solved, commited and pushed by bat
11 files changed, 500 insertions(+), 2 deletions(-)
create mode 100644 LeetCode/415_AddStrings.cc
create mode 100644 LeetCode/670_MaximumSwap.py
create mode 100644 LeetCode/876_MiddleoftheLinkedList.py
create mode 100644 LeetCode/ali3.py
create mode 100644 LeetCode/slidewindow.py
create mode 100644 LeetCode/test.cc
git push origin master
2022.03.27 周日 22:46:56.55
git status
On branch master
Your branch is ahead of 'origin/master' by 2 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: CodeTop.md
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LeetCode/21_MergeTwoSortedLists.cc
LeetCode/409_LongestPalindrome.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 7a1a561] mostly Leetcode problems solved, commited and pushed by bat
6 files changed, 164 insertions(+), 1 deletion(-)
create mode 100644 LeetCode/21_MergeTwoSortedLists.cc
create mode 100644 LeetCode/409_LongestPalindrome.py
git push origin master
2022.03.28 周一 21:45:07.46
git status
On branch master
Your branch is ahead of 'origin/master' by 3 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
deleted: CodeTop.md
modified: LeetCode/100_SameTree.py
modified: LeetCode/1015_SmallestDivisiblebyK.py
modified: LeetCode/101_SymmetricTree.py
modified: LeetCode/104_MaximumDepthofBinaryTree.py
modified: LeetCode/108_ConvertSotedArraytoBinarySearchTree.py
modified: LeetCode/110_BalancedBinaryTree.py
modified: LeetCode/111_MinimumDepthofBinaryTree.py
modified: LeetCode/112_PathSum.py
modified: LeetCode/118 _PascalsTriangle.py
modified: LeetCode/119_PascalsTriangleII.py
modified: LeetCode/1217_MinimumCosttoMoveChipstoTheSamePosition.py
modified: LeetCode/1290_ConvertBinaryNumberinaLinkedListtoInterger.py
modified: LeetCode/13_RomantoInteger.py
modified: LeetCode/14_LongestCommonPrefix.py
modified: LeetCode/167_TwoSumII_InputArrayisSorted.py
modified: LeetCode/1_TwoSum.py
modified: LeetCode/203_RemoveLinkedListElement.py
modified: LeetCode/206_ReverseLinkedList.py
modified: LeetCode/20_ValidParentheses.py
modified: LeetCode/231_PowerofTwo.py
modified: LeetCode/26_RemoveDuplicatesfromSortedArray.py
modified: LeetCode/278_FirstBadVersion.py
modified: LeetCode/27_RemoveElement.py
modified: LeetCode/283_MoveZeros.py
modified: LeetCode/28_ImplementstrStr().py
modified: LeetCode/2_AddTwoNumbers.py
modified: LeetCode/344_ReverseString.py
modified: LeetCode/35_SearchInsertPosition.py
modified: LeetCode/372_SuperPow.py
modified: LeetCode/557_ReverseWordsinaStringIII.py
modified: LeetCode/58_LengthofLastWord.py
modified: LeetCode/66_PlusOne.py
modified: LeetCode/67_AddBinary.py
modified: LeetCode/69_Sqrtx.py
modified: LeetCode/704_BinarySearch.py
modified: LeetCode/70_ClimbingStars.py
modified: LeetCode/7_ReverseInteger.py
modified: LeetCode/807_MaxIncreasetoKeepCitySkyline.py
modified: LeetCode/83_RemoveDuplicatesfromSortedList.py
modified: LeetCode/938_RangeSumofBST.py
modified: LeetCode/94_BinartTreeInorderTraversal.py
modified: LeetCode/977_SquaresofaSortedArray.py
modified: LeetCode/9_PalindromeNumber.py
modified: LeetCode/U_1200_MinimumAbsoluteDifference.py
modified: LeetCode/U_1994_TheNumberofGoodSubsets.py
modified: LeetCode/U_300_LongestIncreasingSubsequence.py
modified: LeetCode/U_394_DecodeString.py
modified: LeetCode/U_42_TrappingRainWater.py
modified: LeetCode/Unfinished_416_PartitionEqualSubsetSum.py
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
Daily.md
LeetCode/234_PalindromeLinkedList.py
LeetCode/23_MergeKSortedLists.py
"Linked List \351\223\276\350\241\250\344\270\223\351\242\230.md"
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 00f2a6c] mostly Leetcode problems solved, commited and pushed by bat
55 files changed, 257 insertions(+), 9 deletions(-)
rename CodeTop.md => Daily.md (82%)
create mode 100644 LeetCode/234_PalindromeLinkedList.py
create mode 100644 LeetCode/23_MergeKSortedLists.py
create mode 100644 "Linked List \351\223\276\350\241\250\344\270\223\351\242\230.md"
git push origin master
2022.03.29 周二 14:34:59.78
git status
On branch master
Your branch is ahead of 'origin/master' by 4 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: Daily.md
modified: LeetCode/142_LinkedListCycleII.cc
deleted: LeetCode/23_MergeKSortedLists.py
modified: LeetcodeNote.md
modified: "Linked List \351\223\276\350\241\250\344\270\223\351\242\230.md"
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LeetCode/287_FindtheDuplicateNumber.py
LeetCode/61_RotateList.py
LeetCode/U_23_MergeKSortedLists.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 7a42ad7] mostly Leetcode problems solved, commited and pushed by bat
9 files changed, 205 insertions(+), 1 deletion(-)
create mode 100644 LeetCode/287_FindtheDuplicateNumber.py
create mode 100644 LeetCode/61_RotateList.py
rename LeetCode/{23_MergeKSortedLists.py => U_23_MergeKSortedLists.py} (100%)
git push origin master
2022.03.31 周四 22:41:09.55
git status
On branch master
Your branch is ahead of 'origin/master' by 5 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: Daily.md
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LeetCode/74_Searcha2DMatrix.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 2ff246b] mostly Leetcode problems solved, commited and pushed by bat
5 files changed, 94 insertions(+), 1 deletion(-)
create mode 100644 LeetCode/74_Searcha2DMatrix.py
git push origin master
2022.04.02 周六 13:22:15.48
git status
On branch master
Your branch is ahead of 'origin/master' by 6 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
LeetCode/344_ReverseString.cc
LeetCode/U_3_LongestSubstringWithoutRepeatingCharacters.py
LeetCode/U_8_StringtoInteger.py
LeetCode/test.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master 9e04b9a] mostly Leetcode problems solved, commited and pushed by bat
6 files changed, 137 insertions(+)
create mode 100644 LeetCode/344_ReverseString.cc
create mode 100644 LeetCode/U_3_LongestSubstringWithoutRepeatingCharacters.py
create mode 100644 LeetCode/U_8_StringtoInteger.py
create mode 100644 LeetCode/test.py
git push origin master
2022.04.09 周六 22:37:33.87
git status
On branch master
Your branch is ahead of 'origin/master' by 7 commits.
(use "git push" to publish your local commits)
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
modified: AlgorithmScript/QuickSort.py
modified: Daily.md
modified: LeetCode/U_8_StringtoInteger.py
modified: LeetcodeNote.md
modified: a.txt
modified: gitbatlog.txt
Untracked files:
(use "git add <file>..." to include in what will be committed)
AlgorithmScript/Basics.md
AlgorithmScript/InsertionSort.py
LeetCode/11_ContainerWithMostWater.py
LeetCode/136_SingleNumber.py
LeetCode/1721_SwappingNodesinaLinkedList.py
LeetCode/193_ValidPhoneNumbers.sh
LeetCode/347_TopKFrequentElements.py
LeetCode/706_DesignHashMap.py
LeetCode/U_680_ValidPalindromeII.py
LeetCode/U_705_DesignHashSet.py
no changes added to commit (use "git add" and/or "git commit -a")
git add --all
git commit -m 'mostly Leetcode problems solved, commited and pushed by bat'
[master a28ae5a] mostly Leetcode problems solved, commited and pushed by bat
16 files changed, 384 insertions(+), 5 deletions(-)
create mode 100644 AlgorithmScript/Basics.md
create mode 100644 AlgorithmScript/InsertionSort.py
create mode 100644 LeetCode/11_ContainerWithMostWater.py
create mode 100644 LeetCode/136_SingleNumber.py
create mode 100644 LeetCode/1721_SwappingNodesinaLinkedList.py
create mode 100644 LeetCode/193_ValidPhoneNumbers.sh
create mode 100644 LeetCode/347_TopKFrequentElements.py
create mode 100644 LeetCode/706_DesignHashMap.py
create mode 100644 LeetCode/U_680_ValidPalindromeII.py
create mode 100644 LeetCode/U_705_DesignHashSet.py
git push origin master