The function returning the last survivor
Open answerWrite a Python function taking as parameters two integers n and k, and returning the position of the last survivor when the group initially consists of n people and the circle is walked round every k, starting therefore with person k. Mind the offset between the numbering of the people, which starts at 1, and the indices of a Python list, which start at 0. (Question I.1.a of the assignment.)

