My professor gave me the java.util.Arrays.sort static method and it shows an error that the import caot be resolved. This does not happen to any of my other methods. Is this written right?
import java.util.Arrays.sort;
Edit: Does the .sort need to have something? I changed it to
import java.util.Arrays;
and it worked just fine.
