Main.java:2: error: class LinkedList is public, should be declared in a file named LinkedList.java public class LinkedList { ^ 1 error
What can i do about this error?
This is the class already given by CB
Main.java:2: error: class LinkedList is public, should be declared in a file named LinkedList.java public class LinkedList { ^ 1 error
What can i do about this error?
This is the class already given by CB
@bhavik911,
Change class name from LinkedList to Main everywhere in your code. Change constructor names too
Another solution to this can be to create a Main class and copy the main method into that main class. And then call the LinkedList class methods from the main class.
Thanks got it now (char limit)