diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2024-02-20 15:39:29 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2024-02-20 15:39:29 +0000 |
| commit | 43ba87df5e3aaa950fcf8ef55152105fe311276f (patch) | |
| tree | d9f91c84e0945c530c10aa28ca71c14cba3cd9ff /challenge-257/eric-cheung/python/ch-1.py | |
| parent | 1cdfd5aafd6e3b8e6411dc9373e415996ced3c91 (diff) | |
| download | perlweeklychallenge-club-43ba87df5e3aaa950fcf8ef55152105fe311276f.tar.gz perlweeklychallenge-club-43ba87df5e3aaa950fcf8ef55152105fe311276f.tar.bz2 perlweeklychallenge-club-43ba87df5e3aaa950fcf8ef55152105fe311276f.zip | |
- Added solutions by Dave Jacoby.
- Added solutions by Eric Cheung.
- Added solutions by Mohammad Meraj Zia.
- Added solutions by Mark Anderson.
- Added solutions by Luca Ferrari.
- Added solutions by Bob Lied.
- Added solutions by Jaldhar H. Vyas.
- Added solutions by David Ferrone.
- Added solutions by Thomas Kohler.
- Added solutions by Mariano Spadaccini.
- Added solutions by PokGoPun.
- Added solutions by Roger Bell_West.
Diffstat (limited to 'challenge-257/eric-cheung/python/ch-1.py')
| -rwxr-xr-x | challenge-257/eric-cheung/python/ch-1.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/challenge-257/eric-cheung/python/ch-1.py b/challenge-257/eric-cheung/python/ch-1.py new file mode 100755 index 0000000000..5b438b92e1 --- /dev/null +++ b/challenge-257/eric-cheung/python/ch-1.py @@ -0,0 +1,9 @@ +
+## arrInt = [5, 2, 1, 6] ## Example 1
+## arrInt = [1, 2, 0, 3] ## Example 2
+## arrInt = [0, 1] ## Example 3
+arrInt = [9, 4, 9, 2] ## Example 4
+
+arrOutput = [len([arrInt[nColLoop] for nColLoop in range(len(arrInt)) if nColLoop != nRowLoop and arrInt[nColLoop] < arrInt[nRowLoop]]) for nRowLoop in range(len(arrInt))]
+
+print (arrOutput)
|
