最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊

Leetcode 2553. Separate the Digits in an Array

2023-02-12 12:26 作者:您是打尖兒還是住店呢  | 我要投稿

Given an array of positive integers?nums, return?an array?answer?that consists of the digits of each integer in?nums?after separating them in?the same order?they appear in?nums.

To separate the digits of an integer is to get all the digits it has in the same order.

  • For example, for the integer?10921, the separation of its digits is?[1,0,9,2,1].

?

Example 1:

Input: nums = [13,25,83,77]Output: [1,3,2,5,8,3,7,7]Explanation: - The separation of 13 is [1,3]. - The separation of 25 is [2,5]. - The separation of 83 is [8,3]. - The separation of 77 is [7,7]. answer = [1,3,2,5,8,3,7,7]. Note that answer contains the separations in the same order.

Example 2:

Input: nums = [7,1,3,9]Output: [7,1,3,9]Explanation: The separation of each integer in nums is itself. answer = [7,1,3,9].

?

Constraints:

  • 1 <= nums.length <= 1000

  • 1 <= nums[i] <= 105

1:寫一個(gè)函數(shù)返回?cái)?shù)字的拆分信息;

2:遍歷數(shù)組,將拆分信息放到list里面;

3:把list裝到數(shù)組里面即可;

Runtime:?4 ms, faster than?86.11%?of?Java?online submissions for?Separate the Digits in an Array.

Memory Usage:?42.5 MB, less than?96.33%?of?Java?online submissions for?Separate the Digits in an Array.

Next challenges:


Leetcode 2553. Separate the Digits in an Array的評論 (共 條)

分享到微博請遵守國家法律
五台县| 龙口市| 双桥区| 无锡市| 尉犁县| 科技| 德州市| 新乡市| 蓝山县| 陇西县| 淮安市| 泾川县| 紫云| 蒙自县| 南岸区| 馆陶县| 永年县| 静乐县| 阿城市| 霍州市| 化隆| 本溪| 莒南县| 安平县| 林州市| 民丰县| 云龙县| 和田市| 拜城县| 长宁区| 土默特左旗| 新巴尔虎右旗| 黔东| 南华县| 光泽县| 罗甸县| 通山县| 西平县| 台州市| 田阳县| 中西区|