public class MyLL { MyNode head; /* FROM HERE - FROM HERE - FROM HERE - FROM HERE - FROM HERE */ public boolean twoInARow() { } public boolean isWord(String str) { } public void deleteLast() { } /* You can use the yourMainMethod method to do any testing you'd like to do (none is also allowed). It will be automatically called when you run the class without any command line parameters. */ public static void yourMainMethod() { } /* TO HERE - TO HERE - TO HERE - TO HERE - TO HERE - TO HERE */ public MyLL() { head = null; } public void insert(char c) { MyNode nd = new MyNode(c); nd.setNext(head); head = nd; } public String toString() { String str=""; MyNode nd = head; while (nd != null) { str += nd.getLetter()+" "; nd=nd.getNext(); } return str; } public static void main(String[] args) { MyLL theList = new MyLL(); int i,n; if (args.length==0) yourMainMethod(); else { for (i=0; i