8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f86c391 commit 17f3fb6Copy full SHA for 17f3fb6
7KYU/get_larger_numbers.py
@@ -0,0 +1,4 @@
1
+# Solution for task: https://www.codewars.com/kata/563b1f55a5f2079dc100008a/
2
+
3
+def get_larger_numbers(a: list, b: list) -> list:
4
+ return [max(i, j) for i, j in zip(a, b)]
0 commit comments