-
W. Spencer Smith authoredW. Spencer Smith authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
DeleteCorrect.java 158 B
public static void del(int i)
{
int j;
for (j = i; j < (length - 1); j++)
{
s[j] = s[j+1];
}
length = length - 1;
}