Hi guys
i am looping through a list of strings, in psudocode this is how
for (each node in my list)
if the node.getBooleanVariable == true
add one to my counter
else
take one away from my counter
if my counter = another counter
print node.getStringVariable() //THIS IS WHERE I AM STUCK
here i want to concatenate the string from node.getStringVariable() with the node whos next boolean element is a false one. Does that make it any clearer?
thanks