aboutsummaryrefslogtreecommitdiff
path: root/challenge-048/paulo-custodio/python/ch-1.py
diff options
context:
space:
mode:
authorMohammad Sajid Anwar <Mohammad.Anwar@yahoo.com>2024-08-31 22:33:08 +0100
committerGitHub <noreply@github.com>2024-08-31 22:33:08 +0100
commit8fa19c94e5d9ee672d72cb7c4aabf09cc2645435 (patch)
tree4ffa30f75a0236feeb059dd0d3229a2c4d798191 /challenge-048/paulo-custodio/python/ch-1.py
parent1d9c15f31a1dd6ff6f81bcd1f30d0f9d90c9b607 (diff)
parentafce98214cf5e95bd988575f103eac4216e77119 (diff)
downloadperlweeklychallenge-club-8fa19c94e5d9ee672d72cb7c4aabf09cc2645435.tar.gz
perlweeklychallenge-club-8fa19c94e5d9ee672d72cb7c4aabf09cc2645435.tar.bz2
perlweeklychallenge-club-8fa19c94e5d9ee672d72cb7c4aabf09cc2645435.zip
Merge pull request #10738 from pauloscustodio/master
Add Python solutions
Diffstat (limited to 'challenge-048/paulo-custodio/python/ch-1.py')
-rw-r--r--challenge-048/paulo-custodio/python/ch-1.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/challenge-048/paulo-custodio/python/ch-1.py b/challenge-048/paulo-custodio/python/ch-1.py
new file mode 100644
index 0000000000..d20aeb24ea
--- /dev/null
+++ b/challenge-048/paulo-custodio/python/ch-1.py
@@ -0,0 +1,25 @@
+#!/usr/bin/env python3
+
+# Challenge 048
+#
+# TASK #1
+# Survivor
+# There are 50 people standing in a circle in position 1 to 50. The person
+# standing at position 1 has a sword. He kills the next person i.e. standing at
+# position 2 and pass on the sword to the immediate next i.e. person standing at
+# position 3. Now the person at position 3 does the same and it goes on until
+# only one survives.
+#
+# Write a script to find out the survivor.
+
+people = [x for x in range(1, 51)]
+p = 0
+while len(people) > 1:
+ if p >= len(people)-1:
+ people = people[1:]
+ else:
+ people = people[0:p+1]+people[p+2:]
+ p += 1
+ if p >= len(people):
+ p = 0
+print(people[0])