Skip to content

Commit d8e1ec6

Browse files
Update algorithms/top_k_elements/smallest_range_covering_k_lists/__init__.py
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent c8905e7 commit d8e1ec6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • algorithms/top_k_elements/smallest_range_covering_k_lists

algorithms/top_k_elements/smallest_range_covering_k_lists/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def smallest_range_two_pointer(nums: List[List[int]]) -> List[int]:
5555
for num in num_list:
5656
merged.append((num, list_idx))
5757

58-
# sor the merged list
58+
# sort the merged list
5959
merged.sort()
6060

6161
# Two pointers to track the smallest range

0 commit comments

Comments
 (0)