(left, right []int)
| 35 | } |
| 36 | |
| 37 | func equalInts(left, right []int) bool { |
| 38 | if len(left) != len(right) { |
| 39 | return false |
| 40 | } |
| 41 | for i := range left { |
| 42 | if left[i] != right[i] { |
| 43 | return false |
| 44 | } |
| 45 | } |
| 46 | return true |
| 47 | } |
no outgoing calls
no test coverage detected