Josephus and his forty men were trapped in a cave by the Romans. Rather than reveal secrets or be captured, they opted for a mass suicide. They gathered in a circle and killed one man every three. The man who survived was supposed to end his own life.
Your challenge for today is to write a function that will return the winning survivor of a Josephus permutation. It should accept two parameters, the amount of people in total n, and the amount of steps between eliminations k.
For example, with n=7
and k=3
josephus_survivor(7,3)
should act this way:
josephus_survivor(7,3) => means 7 people in a circle; one every 3 is eliminated until one remains [1,2,3,4,5,6,7] - initial sequence [1,2,4,5,6,7] => 3 is counted out [1,2,4,5,7] => 6 is counted out [1,4,5,7] => 2 is counted out [1,4,5] => 7 is counted out [1,4] => 5 is counted out [4] => 1 counted out, 4 is the last element - the survivor!
Good luck! Happy coding.
Today's challenge comes from GiacomoSorbi on CodeWars, who has licensed redistribution of this challenge under the 2-Clause BSD License!
Want to propose a challenge idea for a future post? Email yo+challenge@dev.to with your suggestions!
Top comments (8)
I needed to Go find the formula for this one. This is essentially my implementation of it in Go.
Formula was found here en.wikipedia.org/wiki/Josephus_pro...
Would be interesting to see a non recursive implementation of this, as Go does not optimize recursion very well from what I understand.
josephus.go
josephus_test.go
Correct me if I'm wrong.
Your test case for
n = 7, k = 3
checks for an expected result of 3, but based on the same example above, the results should be 4.Is there a mistake in the test cases?
No its right, what the Josephus permutation is doing is telling us which solider will survive after all eliminations have happened. The example above gives us soldier 4, which, in a standard array would be position 3 in the array as arrays start at 0 and count up.
Example:
In Go, if you had a slice that represented the group of solders in the example, you would get the index of soldier in the slice that will survive the elimination.
If you wanted to print a more human readable output using the result of the Josephus permutation, you would simply do something like:
Which would produce the output:
I see, if the array starts from 0, the results from your test cases would make sense.
Thanks for clarifying!
Thank you for the question! In the future if my test cases look different than the examples given I will clarify the reason in my original post.
C++
Wow, this one was hard to figure out.
Haskell
In Python, not the best answer though, with a complexity of O(n)