Browse Source

fix(DoOp): change return type of expected function to String from int

pull/2087/head
davhojt 1 year ago
parent
commit
0190a0bca3
No known key found for this signature in database
GPG Key ID: 29BFE853DB7E0677
  1. 2
      subjects/java/piscine/DoOp/README.md

2
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
}
}

Loading…
Cancel
Save