Skip to content

Commit 0bf5319

Browse files
committed
make the code ready for pull request
1 parent b30eaab commit 0bf5319

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/main/java/com/thealgorithms/maths/ComplexNumberUtil.java

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,4 @@ public static ComplexNumber arccot(ComplexNumber num) {
263263

264264
return multiply(divide(MINUS_I, TWO), ln(divide(add(num, PLUS_I), subtract(num, PLUS_I))));
265265
}
266-
267-
public ComplexNumber add(ComplexNumber added)
268-
{
269-
return new ComplexNumber(1,1);
270-
}
271-
272-
public static void main(String[] args)
273-
{
274-
ComplexNumber num1 = new ComplexNumber(1,1);
275-
ComplexNumber num2 = new ComplexNumber(2,3);
276-
}
277266
}

0 commit comments

Comments
 (0)