In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
In this article Xiaobian for you to introduce in detail "JavaScript how to delete duplicates in the ordered array", the content is detailed, the steps are clear, the details are handled properly, I hope this "JavaScript how to delete duplicates in the ordered array" article can help you solve your doubts, the following follow the editor's ideas slowly in-depth, together to learn new knowledge.
If you have an ordered array nums, you are required to delete the repeating elements in place so that each element appears only once, and returns the new length of the deleted array.
Do not use extra array space, it must be done by modifying the input array in place and using O (1) extra space.
Description:
Why is the returned value an integer, but the output answer is an array?
Note: the input array is passed as a "reference", which means that modifying the input array in the function is visible to the caller.
You can imagine the internal operation as follows:
/ / nums is passed as a "reference". That is, no copy of the argument is made int len = removeDuplicates (nums); / / modifying the input array in the function is visible to the caller. / / according to the length returned by your function, it will print out all the elements in the array within that length range. For (int I = 0; I < len; iTunes +) {print (nums [I]);}
Example 1:
Input: nums = [1, 1, 1, 1, 2]
Output: 2, nums = [1BI 2]
Explanation: the function should return the new length 2, and the first two elements of the original array nums are modified to 1, 2. You do not need to consider the elements in the array that exceed the new length.
Example 2:
Input: nums = [0re0pence1jing1jing1jing2jing2jinme3re4]
Output: 5, nums = [0pm 1pm 2jue 3jue 4]
Explanation: the function should return the new length 5, and the first five elements of the original array nums are modified to 0, 1, 2, 3, 4. You do not need to consider the elements in the array that exceed the new length.
Note:
0
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.