Skip to content

Commit 2fffe81

Browse files
committed
Merge branch 'feature/calculator'
2 parents 674b429 + 1286ca0 commit 2fffe81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/thealgorithms/calculator.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.thealgorithms;
22

33
public class calculator {
4-
public int add(int a, int b) {
5-
return a + b + 1;
6-
}
4+
public int add(int a, int b) {
5+
return a + b+1;
6+
}
77

88
public int subtract(int a, int b) {
99
return a - b;

0 commit comments

Comments
 (0)