diff options
| author | Thomas Köhler <jean-luc@picard.franken.de> | 2023-10-03 10:44:24 +0200 |
|---|---|---|
| committer | Thomas Köhler <jean-luc@picard.franken.de> | 2023-10-03 10:44:24 +0200 |
| commit | 9aefa08d8034cd60341e0b551089ec34dda7fdca (patch) | |
| tree | 480936666f996a41f2321fdb54463259aaeaf2fc /challenge-237/jeanluc2020/python/ch-2.py | |
| parent | 9a50910d2d97f98fc942e1a5275016a462be8abb (diff) | |
| download | perlweeklychallenge-club-9aefa08d8034cd60341e0b551089ec34dda7fdca.tar.gz perlweeklychallenge-club-9aefa08d8034cd60341e0b551089ec34dda7fdca.tar.bz2 perlweeklychallenge-club-9aefa08d8034cd60341e0b551089ec34dda7fdca.zip | |
Add solution 237
Signed-off-by: Thomas Köhler <jean-luc@picard.franken.de>
Diffstat (limited to 'challenge-237/jeanluc2020/python/ch-2.py')
| -rwxr-xr-x | challenge-237/jeanluc2020/python/ch-2.py | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/challenge-237/jeanluc2020/python/ch-2.py b/challenge-237/jeanluc2020/python/ch-2.py new file mode 100755 index 0000000000..0125a8b508 --- /dev/null +++ b/challenge-237/jeanluc2020/python/ch-2.py @@ -0,0 +1,65 @@ +#!/usr/bin/python3 +# https://theweeklychallenge.org/blog/perl-weekly-challenge-237/#TASK2 +# +# Task 2: Maximise Greatness +# ========================== +# +# You are given an array of integers. +# +# Write a script to permute the given array such that you get the maximum +# possible greatness. +# +### To determine greatness, nums[i] < perm[i] where 0 <= i < nums.length +# +## Example 1 +## +## Input: @nums = (1, 3, 5, 2, 1, 3, 1) +## Output: 4 +## +## One possible permutation: (2, 5, 1, 3, 3, 1, 1) which returns 4 greatness as below: +## nums[0] < perm[0] +## nums[1] < perm[1] +## nums[3] < perm[3] +## nums[4] < perm[4] +# +## Example 2 +## +## Input: @ints = (1, 2, 3, 4) +## Output: 3 +## +## One possible permutation: (2, 3, 4, 1) which returns 3 greatness as below: +## nums[0] < perm[0] +## nums[1] < perm[1] +## nums[2] < perm[2] +# +############################################################ +## +## discussion +## +############################################################ +# +# Calculate all permutations and check the greatness for each permutation +# Keep the maximum + +from itertools import permutations + +def greatness(nums: list, perm: list) -> int: + greatness = 0 + indices = list(range(len(nums))) + for i in indices: + if nums[i] < perm[i]: + greatness+=1 + return greatness + +def maximise_greatness(ints: list): + print("Input: (" + ', '.join(str(x) for x in ints) + ")") + max = 0 + for perm in permutations(ints): + current = greatness(ints, perm) + if current > max: + max = current + print(f"Output: {max}") + + +maximise_greatness([1, 3, 5, 2, 1, 3, 1]) +maximise_greatness([1, 2, 3, 4]) |
