(count, seed int)
| 55 | } |
| 56 | |
| 57 | func PrepareStringsToDiff(count, seed int) (As, Bs [][]string) { |
| 58 | As = make([][]string, count) |
| 59 | Bs = make([][]string, count) |
| 60 | for i := range As { |
| 61 | As[i], Bs[i] = prepareStrings(int64(i + seed)) |
| 62 | } |
| 63 | return |
| 64 | } |