Java to Pseudocode
I just don't know how to convert from java to pseudo anymore... I did pseudo in my first year study. If someone could just convert this small piece of code for me so that i can complete the rest i would be greatful.
Vector<Vector> open = new Vector <Vector>();
Vector path = new Vector ();
path.add ("Edinburgh");
open.add (path);
|