Skip to content

Given an array of integers, sort the array in ascending order and return it.

Notifications You must be signed in to change notification settings

JuanMarinoDev/Sort-Array-in-Ascending-Order

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Sort Array in Ascending Order

Given an array of integers nums, sort the array in ascending order and return it.

Running Tests

Example 1:

Input: nums = [5,2,3,1]

Output: [1,2,3,5]

Example 2:

Input: nums = [5,1,1,2,0,0]

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

About

Given an array of integers, sort the array in ascending order and return it.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published