首页 > 编程语言 > 详细

[LeetCode] 912. Sort an Array 数组排序

时间:2019-09-08 01:24:40      阅读:89      评论:0      收藏:0      [点我收藏+]



Given an array of integers?nums, sort the array in ascending order.

Example 1:

Input:?[5,2,3,1]
Output: [1,2,3,5]

Example 2:

Input: [5,1,1,2,0,0]
Output: [0,0,1,1,2,5]

Note:

  1. 1 <= A.length <= 10000
  2. -50000 <= A[i] <= 50000



Github 同步地址:

https://github.com/grandyang/leetcode/issues/912



参考资料:

https://leetcode.com/problems/sort-an-array/



LeetCode All in One 题目讲解汇总(持续更新中...)

[LeetCode] 912. Sort an Array 数组排序

原文:https://www.cnblogs.com/grandyang/p/11483981.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!