From a60a52b3b4e9dcb56d80d2b92df0a70e840ed15c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C5=9F=C4=B1nsu=20Ar=C4=B1c=C4=B1?= Date: Tue, 1 Feb 2022 20:41:23 +0300 Subject: [PATCH] 1678 --- E_1678_GoalParserInterpretation.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 E_1678_GoalParserInterpretation.java 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