Skip to content

Commit fa9619f

Browse files
committed
format change
1 parent 3068c0c commit fa9619f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

C++/chapLinearList.tex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ \subsubsection{代码1}
112112
class Solution {
113113
public:
114114
int removeDuplicates(int A[], int n) {
115-
if(n <= 2)
116-
return n;
115+
if(n <= 2) return n;
117116

118117
int index = 2;
119118
for(int i = 2; i < n; i ++){

0 commit comments

Comments
 (0)