(array_a, array_b)
| 80 | |
| 81 | |
| 82 | def compare_and_count(array_a, array_b): |
| 83 | count = 0 |
| 84 | for a, b in zip(array_a, array_b): |
| 85 | if a == 1 and b == 1: count+=1 |
| 86 | if a > b:count+=1 |
| 87 | return count |
| 88 | |
| 89 | def isfile(path): |
| 90 | return os.path.isfile(path) |
no outgoing calls
no test coverage detected