diff options
| author | Mohammad Sajid Anwar <Mohammad.Anwar@yahoo.com> | 2024-01-22 18:19:47 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-22 18:19:47 +0000 |
| commit | 64774d41bd8c23d9c281dcd27228aaa53967a822 (patch) | |
| tree | 29d250990e5d207389956486e34870881034e1b9 /challenge-253/luca-ferrari/python/ch-2.python | |
| parent | 1126463e11f729ed009174cca95f65443b3ec575 (diff) | |
| parent | 52e2018af75d08a9b77b8e3bb56a7b2fffc6f42b (diff) | |
| download | perlweeklychallenge-club-64774d41bd8c23d9c281dcd27228aaa53967a822.tar.gz perlweeklychallenge-club-64774d41bd8c23d9c281dcd27228aaa53967a822.tar.bz2 perlweeklychallenge-club-64774d41bd8c23d9c281dcd27228aaa53967a822.zip | |
Merge pull request #9444 from fluca1978/PWC253
PWC 253
Diffstat (limited to 'challenge-253/luca-ferrari/python/ch-2.python')
| -rw-r--r-- | challenge-253/luca-ferrari/python/ch-2.python | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/challenge-253/luca-ferrari/python/ch-2.python b/challenge-253/luca-ferrari/python/ch-2.python new file mode 100644 index 0000000000..2e4abff0e5 --- /dev/null +++ b/challenge-253/luca-ferrari/python/ch-2.python @@ -0,0 +1,49 @@ +#!python + +# +# Perl Weekly Challenge 253 +# Task 2 +# +# See <https://perlweeklychallenge.org/blog/perl-weekly-challenge-253> +# + +import sys +import collections + +# task implementation +# the return value will be printed +def task_2( args ): + ones = {} + for row_index in range( 0, len( args ) ): + sum = 0 + for x in args[ row_index ]: + sum += x + + if not sum in ones: + ones[ str( sum ) ] = [] + + ones[ str( sum ) ].append( row_index ) + + keys = list( ones.keys() ) + keys.sort() + result = "" + for k in keys: + ones[ k ].sort() + for v in ones[ k ]: + result += str( v ) + ',' + + + return result + + + +# invoke the main without the command itself +if __name__ == '__main__': + matrix = [ + [1, 1, 0, 0, 0], + [1, 1, 1, 1, 0], + [1, 0, 0, 0, 0], + [1, 1, 0, 0, 0], + [1, 1, 1, 1, 1] + ] + print( task_2( matrix ) ) |
