diff options
| author | Mohammad Sajid Anwar <Mohammad.Anwar@yahoo.com> | 2024-02-05 18:58:36 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-05 18:58:36 +0000 |
| commit | 261ffda2e5ef595efd76b5692a7fcc7a5fe39a8a (patch) | |
| tree | 3f92c1382a3474bf5273fccd28fe740789ab3257 /challenge-255/luca-ferrari/python/ch-1.python | |
| parent | 3e8277a32e27b17cee966058d5daef4a79ba6957 (diff) | |
| parent | 7ae41852c28f903f5821561705eba50147c9c6e4 (diff) | |
| download | perlweeklychallenge-club-261ffda2e5ef595efd76b5692a7fcc7a5fe39a8a.tar.gz perlweeklychallenge-club-261ffda2e5ef595efd76b5692a7fcc7a5fe39a8a.tar.bz2 perlweeklychallenge-club-261ffda2e5ef595efd76b5692a7fcc7a5fe39a8a.zip | |
Merge pull request #9520 from fluca1978/PWC255
PWC 255
Diffstat (limited to 'challenge-255/luca-ferrari/python/ch-1.python')
| -rw-r--r-- | challenge-255/luca-ferrari/python/ch-1.python | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/challenge-255/luca-ferrari/python/ch-1.python b/challenge-255/luca-ferrari/python/ch-1.python index a0533551d8..d5e0960574 100644 --- a/challenge-255/luca-ferrari/python/ch-1.python +++ b/challenge-255/luca-ferrari/python/ch-1.python @@ -1,24 +1,36 @@ #!python # -# Perl Weekly Challenge 254 +# Perl Weekly Challenge 255 # Task 1 # # See <https://perlweeklychallenge.org/blog/perl-weekly-challenge-254> # import sys -import math # task implementation # the return value will be printed def task_1( args ): - num = int( args[ 0 ] ) - for i in range( 2, int( math.sqrt( num ) ) ): - if ( i ** 3 ) == num: - return True + origin = args[ 0 ] + shuffled = args[ 1 ] + if len( shuffled ) != len( origin ) + 1: + return "Shuffled string must be one character longer than original string" - return False + classification = {} + + for needle in shuffled: + if not needle in classification: + classification[ needle ] = 0 + + classification[ needle ] += 1 + + for needle in origin: + classification[ needle ] -= 1 + if classification[ needle ] <= 0: + del classification[ needle ] + + return list( classification.keys() )[ 0 ] # invoke the main without the command itself |
