diff options
Diffstat (limited to 'challenge-226/eric-cheung/python/ch-1.py')
| -rwxr-xr-x | challenge-226/eric-cheung/python/ch-1.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/challenge-226/eric-cheung/python/ch-1.py b/challenge-226/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..bd083aa7f7 --- /dev/null +++ b/challenge-226/eric-cheung/python/ch-1.py @@ -0,0 +1,12 @@ +
+## Example 1
+## strInput = "lacelengh"
+## arrIndices = [3, 2, 0, 5, 4, 8, 6, 7, 1]
+
+## Example 2
+strInput = "rulepark"
+arrIndices = [4, 7, 3, 1, 0, 5, 2, 6]
+
+strOutput = "".join([strInput[arrIndices.index(nLoop)] for nLoop in range(len(strInput))])
+
+print (strOutput)
|
