diff options
| author | MZuenni <michi.zuendorf@gmail.com> | 2023-02-13 16:46:09 +0100 |
|---|---|---|
| committer | MZuenni <michi.zuendorf@gmail.com> | 2023-02-13 16:46:09 +0100 |
| commit | 54946c9945857e42b8eb4025a66d3344bd53f07c (patch) | |
| tree | 083a4f68ac29dd31865474fcec4e0743520a13ea /datastructures/RMQ.cpp | |
| parent | cd657bcfa53ee3b5b200820b9d5bad510d098920 (diff) | |
reformatted lineendings
Diffstat (limited to 'datastructures/RMQ.cpp')
| -rw-r--r-- | datastructures/RMQ.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/datastructures/RMQ.cpp b/datastructures/RMQ.cpp index 8e5cc3f..401cca4 100644 --- a/datastructures/RMQ.cpp +++ b/datastructures/RMQ.cpp @@ -24,4 +24,4 @@ int query(int l, int r) { if(l >= r) return l; int s = __lg(r-l); r = r - (1 << s); return select(rmq[s][l],rmq[s][r]); -}
\ No newline at end of file +} |
