(node)
| 58 | return head |
| 59 | |
| 60 | def getLength(node): |
| 61 | length = 0 |
| 62 | |
| 63 | while node: |
| 64 | node = node.next |
| 65 | length += 1 |
| 66 | |
| 67 | return length |
| 68 | |
| 69 | length = getLength(head) |
| 70 | k = k % length |
nothing calls this directly
no outgoing calls
no test coverage detected