Skip to content

Commit 54118a2

Browse files
authored
Fix typo in comment for walk function
1 parent 066c0e8 commit 54118a2

File tree

1 file changed

+1
-1
lines changed
  • library/data_structures_[l,r)/bit_uncommon

1 file changed

+1
-1
lines changed

library/data_structures_[l,r)/bit_uncommon/walk.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Requires sum of [i,i] >= 0
2-
//! Returns min r st sum of [0,r] >= sum
2+
//! Returns min r s.t. sum of [0,r] >= sum
33
//! Returns n if sum of [0,n-1] < sum
44
int walk(ll sum) {
55
if (sum <= 0) return -1;

0 commit comments

Comments
 (0)