Skip to content

Commit d884d5f

Browse files
authored
Update Finding_local_groups_of_integers.ipynb
1 parent c487150 commit d884d5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Finding_local_groups_of_integers.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"\n",
1111
"June 12, 2024\n",
1212
"\n",
13-
"Supintegere we have an ordered list of integers, where some members of the list occur in proximity to each other. We wish to return a list of tuples, such that each tuple stores the first and last integer of each local group within the list of numbers. To define 'local' we can choose some offset, representing the maximum difference between two adjacent elements of a proximity group. \n",
13+
"Suppose we have an ordered list of integers, where some members of the list occur in proximity to each other. We wish to return a list of tuples, such that each tuple stores the first and last integer of each local group within the list of numbers. To define 'local' we can choose some offset, representing the maximum difference between two adjacent elements of a proximity group. \n",
1414
"\n",
1515
"So for instance, from the list of integers [0,1,3,6,9,50,53,56,70,100,110,120], we would like to return [(0,9),(50,70),(100,120)] in the case where our offset is 25. We will implement this below.\n",
1616
"\n",

0 commit comments

Comments
 (0)