Given an encoded string, return it's decoded string. The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times. Note that k is ...
// I. Record a string with inside of brackets([]) and a number which means how many times repeat inside of brackets. // II. If there is another brackets inside of breacktes, then push the current ...