diff --git a/E_1678_GoalParserInterpretation.java b/E_1678_GoalParserInterpretation.java new file mode 100644 index 0000000..3f09427 --- /dev/null +++ b/E_1678_GoalParserInterpretation.java @@ -0,0 +1,9 @@ +public class Solution { + public String interpret(String command) { + command=command.replace("(al)","al"); + command=command.replace("()","o"); + + return command; + + } +} \ No newline at end of file