Skip to content

Commit

Permalink
updated files
Browse files Browse the repository at this point in the history
  • Loading branch information
joric committed May 12, 2023
1 parent dc18812 commit 4edd853
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion programming/binary-search/count-element-occurence.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

https://www.interviewbit.com/problems/count-element-occurence

easy std solutions */
```cpp
/* easy std solutions */
int Solution::findCount(const vector<int> &A, int B) {
auto lower = lower_bound(A.begin(), A.end(), B);
auto upper = upper_bound(A.begin(), A.end(), B);
Expand Down

0 comments on commit 4edd853

Please sign in to comment.