Update data_structures/sparse_table.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Mann Patel
2021-06-06 10:25:39 +05:30
committed by GitHub
parent 5bec761756
commit d5e4364db7

View File

@@ -120,7 +120,7 @@ static void test() {
assert(st.query(2, 6) == 2); ///< as 2 is smallest from 2..6
assert(st.query(3, 8) == 3); ///< as 3 is smallest from 3..8
std::cout << "Testcase passed!" << std::endl;
std::cout << "Self-test implementations passed!" << std::endl;
}
/**