Skip to content

Commit b787dd1

Browse files
refactor 912
1 parent 084a994 commit b787dd1

File tree

1 file changed

+0
-20
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-20
lines changed

src/main/java/com/fishercoder/solutions/_912.java

-20
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,6 @@
22

33
import java.util.Arrays;
44

5-
/**
6-
* 912. Sort an Array
7-
*
8-
* Given an array of integers nums, sort the array in ascending order.
9-
*
10-
* Example 1:
11-
*
12-
* Input: [5,2,3,1]
13-
* Output: [1,2,3,5]
14-
* Example 2:
15-
*
16-
* Input: [5,1,1,2,0,0]
17-
* Output: [0,0,1,1,2,5]
18-
*
19-
*
20-
* Note:
21-
*
22-
* 1 <= A.length <= 10000
23-
* -50000 <= A[i] <= 50000
24-
* */
255
public class _912 {
266
public static class Solution1 {
277
public int[] sortArray(int[] nums) {

0 commit comments

Comments
 (0)