Skip to content

Commit 84e901a

Browse files
refactor 280
1 parent bbc057d commit 84e901a

File tree

1 file changed

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

1 file changed

+0
-3
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
package com.fishercoder.solutions;
22

3-
/**
4-
* Given an unsorted array nums, reorder it in-place such that nums[0] <= nums[1] >= nums[2] <= nums[3]....
5-
For example, given nums = [3, 5, 2, 1, 6, 4], one possible answer is [1, 6, 2, 5, 3, 4]*/
63
public class _280 {
74
public static class Solution1 {
85
public void wiggleSort(int[] nums) {

0 commit comments

Comments
 (0)