MCPcopy Create free account
hub / github.com/geekcomputers/Python / main

Function main

recursiveStrings.py:20–36  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18
19
20def main():
21 matrix = [
22 ["hello", "wow"],
23 ["ABSD", "ABCD"],
24 ["List", "List"],
25 ["abcspq", "zbcspq"],
26 ["1263", "1236"],
27 ["lamar", "lamars"],
28 ["amczs", "amczs"],
29 ["yeet", "sheesh"],
30 ]
31
32 for i in matrix:
33 if CheckTwoStrings(i[0], i[1]):
34 print(f"{i[0]},{i[1]} are similar")
35 else:
36 print(f"{i[0]},{i[1]} are different")
37
38
39main()

Callers 1

Calls 1

CheckTwoStringsFunction · 0.85

Tested by

no test coverage detected