summaryrefslogtreecommitdiff
path: root/progs/a122.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a122.py')
-rw-r--r--progs/a122.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/progs/a122.py b/progs/a122.py
new file mode 100644
index 0000000..584cdc9
--- /dev/null
+++ b/progs/a122.py
@@ -0,0 +1,4 @@
+from operator import eq
+def count_same_pair(nums1, nums2):
+ result = sum(map(eq, nums1, nums2))
+ return result \ No newline at end of file