MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / find pairs.py

File find pairs.py

Python/find pairs.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1# write a program to find all pairs of integers whose sum is equal to a given number.
2
3def findpairs(arr,target):
4 for i in range(len(arr)):

Callers

nothing calls this directly

Calls 1

findpairsFunction · 0.85

Tested by

no test coverage detected