From 0190a0bca3bbdf988b7faabceba8991f9445c596 Mon Sep 17 00:00:00 2001 From: davhojt Date: Tue, 18 Jul 2023 07:57:36 +0100 Subject: [PATCH] fix(DoOp): change return type of expected function to String from int --- subjects/java/piscine/DoOp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/java/piscine/DoOp/README.md b/subjects/java/piscine/DoOp/README.md index ad2ef77c6..708193b85 100644 --- a/subjects/java/piscine/DoOp/README.md +++ b/subjects/java/piscine/DoOp/README.md @@ -14,7 +14,7 @@ Write a function `operate` that returns the result of the given arithmetic opera ```java public class doOp { - public static int operate(String[] args) { + public static String operate(String[] args) { // your code here } }