(mylist)
| 1 | # finding the first recurring character in a list using a hashtable |
| 2 | def func(mylist): |
| 3 | |
| 4 | for i in range(0, len(mylist)): |
| 5 | for j in range(i+1, len(mylist)): |
| 6 | if mylist[i] == mylist[j]: |
| 7 | return mylist[i] |
| 8 | return 0 |
| 9 | |
| 10 | |
| 11 | def hashtable(mylist): |
nothing calls this directly
no outgoing calls
no test coverage detected