Skip to content

Commit 01be1ea

Browse files
authored
Fix typo
1 parent 60e1a07 commit 01be1ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_structures/arrays/sparse_table.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
22
Sparse table is a data structure that allows answering range queries on
3-
a static number_listay, i.e. the elements do not change throughout all the queries.
3+
a static number list, i.e. the elements do not change throughout all the queries.
44
55
The implementation below will solve the problem of Range Minimum Query:
6-
Finding the minimum value of a subset [L..R] of a static number_listay.
6+
Finding the minimum value of a subset [L..R] of a static number list.
77
88
Overall time complexity: O(nlogn)
99
Overall space complexity: O(nlogn)

0 commit comments

Comments
 (0)