We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8229f94 commit 9fa2dd4Copy full SHA for 9fa2dd4
0027_remove_element/rm_elem.c
@@ -1,7 +1,8 @@
1
#include <stdio.h>
2
#include <stdlib.h>
3
4
-static int removeElement(int *nums, int numsSize, int val)
+
5
+int removeElement(int *nums, int numsSize, int val)
6
{
7
int i, count = 0;
8
for (i = 0; i < numsSize; i++) {
0 commit comments