How to write the sample code for golang to implement array segmentation?
This article will explain in detail how to write the sample code for golang to achieve array segmentation. The content of the article is of high quality, so the editor shares it for you as a reference. I hope you will have some understanding of the relevant knowledge after reading this article.
Requirements: given an array and a positive integer, it is required to split the array into multiple arrays of positive integer size. if not, the last array is divided into all the remaining elements.
Example 1:
Array: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], positive integer: 2
Expected results: [[1,2], [3,4], [5,6], [7,8], [9,10]]
Example 2:
Array: [1, 2, 3, 4, 5, 6, 7, 8, 9], positive integer: 2
Expected results: [[1,2], [3,4], [5,6], [7,8], [9]]
Here is my implementation code:
/ / split the array into multiple arrays whose size is equal to the specified size according to the passed array and the split size. If not, the last array element is smaller than the other array func splitArray (arr [] int, num int64) [] [] int {max: = int64 (len (arr)) / / to determine whether the array size is less than or equal to the specified partition size. If yes, put the original array into a two-dimensional array and return if max.