16 lines
304 B
Java
16 lines
304 B
Java
package array;
|
|
|
|
import org.junit.Test;
|
|
|
|
import static org.junit.Assert.*;
|
|
|
|
public class RemoveElementTest {
|
|
|
|
@Test
|
|
public void removeElement() {
|
|
int[]nums={3,2,2,3};
|
|
int val=3;
|
|
RemoveElement solution = new RemoveElement();
|
|
solution.removeElement(nums,val);
|
|
}
|
|
} |