You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the next counter starts immediately after the member is removed.
5
+
Print till all the members are exhausted.
6
+
7
+
For example:
8
+
Input: consider 123456789 members sitting in a circular fashion,
9
+
Output: 369485271
10
+
"""
11
+
12
+
a= ['1','2','3','4','5','6','7','8','9']
13
+
14
+
defjosepheus(int_list, skip):
15
+
skip=skip-1#list starts with 0 index
16
+
idx=0
17
+
whilelen(int_list)>0:
18
+
idx= (skip+idx)%len(int_list) #hashing to keep changing the index to every 3rd
19
+
printint_list.pop(idx)
20
+
21
+
22
+
josepheus(a,3)
23
+
24
+
"""
25
+
the reason for hashing is that we have to find the index of the item which needs to be removed.
26
+
So for e.g. if you iterate with the initial list of folks with every 3rd item eliminated:
27
+
28
+
INPUT
29
+
int_list = 123456789
30
+
skip = 3
31
+
32
+
While Iteration:
33
+
34
+
int_list = 123456789
35
+
len(int_list) = 9
36
+
skip = 2 # as int_list starts from 0
37
+
idx = (0 + 2) % 9 #here previous index was 0
38
+
so 3rd element which is 3 in this case eliminated
39
+
int_list = 12456789
40
+
len(int_list) = 8
41
+
idx = (2 + 2) % 8 #here previous index was 2
42
+
so 3rd element starting from 4th person which is 6 would be deleted.
43
+
and so on
44
+
The reason why we have to do this way is I am not putting the people who escape at the back of list so ideally in 2 while iteration the list should have been
45
+
45678912 and then no hashing needed to be done, which means you can directly remove the third element
0 commit comments