mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-25 00:43:44 +00:00
fix find_first_of document(Complexity)
This commit is contained in:
parent
2e71fabb24
commit
b580af2093
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ Examples
|
|||
Complexity
|
||||
========================================
|
||||
|
||||
| At most ``(last2 - first2) * (last1 - first1 - (last2 - first2) + 1)`` applications of the corresponding predicate.
|
||||
| At most ``(last1 - first1) * (last2 - first2)`` applications of the corresponding predicate.
|
||||
| Recursive function invocations in *O(logN)* (logarithmic) depth.
|
||||
|
||||
Header
|
||||
|
|
Loading…
Reference in a new issue