diff --git a/library/math/count_paths/count_paths_rectangle.hpp b/library/math/count_paths/count_paths_rectangle.hpp index 4102f503..2b2f324a 100644 --- a/library/math/count_paths/count_paths_rectangle.hpp +++ b/library/math/count_paths/count_paths_rectangle.hpp @@ -7,6 +7,7 @@ //! @endcode //! @time O((n + m)log(n + m)) //! @space O(n + m) +using vl = vector; array get_right_and_top(vl left, vl bottom) { array res; for (vl& cur : res) {