In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
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.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.