We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc057d commit 84e901aCopy full SHA for 84e901a
src/main/java/com/fishercoder/solutions/_280.java
@@ -1,8 +1,5 @@
1
package com.fishercoder.solutions;
2
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]*/
6
public class _280 {
7
public static class Solution1 {
8
public void wiggleSort(int[] nums) {
0 commit comments