Update data_structures/sparse_table.cpp

Co-authored-by: Ayaan Khan <ayaankhan98@gmail.com>
This commit is contained in:
Mann Patel
2021-06-06 18:05:58 +05:30
committed by GitHub
parent d5e4364db7
commit ddf777fcad

View File

@@ -42,7 +42,7 @@ namespace sparse_table {
* function, for the given array `A`. The answer to queries are stored in the
* array ST.
*/
const static uint32_t N = 12345; ///< the maximum size of the array.
constexpr uint32_t N = 12345; ///< the maximum size of the array.
const static uint8_t M = 14; ///< ceil(log2(N)).
struct Sparse_table {