Skip to content

Commit 7c69e4c

Browse files
chore: codestyle fix
1 parent 07d4c0e commit 7c69e4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/verify.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ void printOutput(bool present);
1414

1515
bool isPresent(int* Arr, const size_t& size, const int& n){
1616
for(size_t i = 0; i < size ; i++){
17-
if(Arr[i] == n){
17+
if(Arr[i] == n){
1818
return true;// FOUND!!
19-
}
19+
}
2020
}
2121
return false;
2222
}

0 commit comments

Comments
 (0)