We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Is it only me or others also getting error on the code without writting a single line of code. I am getting the error as given below:
Solution.java:78: error: Illegal static declaration in inner class Solution.Result
public static SinglyLinkedListNode insertNodeAtPosition(SinglyLinkedListNode llist, int data, int position) {
^
modifier 'static' is only allowed in constant variable declarations
Solution.java:109: error: cannot find symbol
SinglyLinkedListNode llist_head = insertNodeAtPosition(llist.head, data, position);
NOte: I am using java version 7 to run the code which was default
^
symbol: method insertNodeAtPosition(SinglyLinkedListNode,int,int)
location: class Solution
2 errors
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Insert a node at a specific position in a linked list
You are viewing a single comment's thread. Return to all comments →
Is it only me or others also getting error on the code without writting a single line of code. I am getting the error as given below:
Solution.java:78: error: Illegal static declaration in inner class Solution.Result public static SinglyLinkedListNode insertNodeAtPosition(SinglyLinkedListNode llist, int data, int position) { ^ modifier 'static' is only allowed in constant variable declarations Solution.java:109: error: cannot find symbol SinglyLinkedListNode llist_head = insertNodeAtPosition(llist.head, data, position); NOte: I am using java version 7 to run the code which was default ^ symbol: method insertNodeAtPosition(SinglyLinkedListNode,int,int) location: class Solution 2 errors