Skip to content

Commit 97b173e

Browse files
committed
style(verify.cpp): remove whitespaces
1 parent 703ae68 commit 97b173e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/verify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ int binarySearch(T item, vector<int>&collection) {
4646
center = (start + end) / 2;
4747
if(collection[center] == item) return center;
4848
if(item > collection[center]) start = center+1;
49-
else end = center-1;
49+
else end = center-1;
5050
} while(start <= end);
5151
return -1;
5252
}

0 commit comments

Comments
 (0)