From ba92daaef2f025e0921c904f1a64b25c16a0eb7a Mon Sep 17 00:00:00 2001 From: Rune Christensen Date: Fri, 12 Apr 2024 09:19:23 +0200 Subject: [PATCH] Update instructions.md (#116) There are no tests for exponents, so it should not be listed as a requirement for implementation. --- exercises/practice/complex-numbers/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/complex-numbers/.docs/instructions.md b/exercises/practice/complex-numbers/.docs/instructions.md index c1aca4a5..c5a7a553 100644 --- a/exercises/practice/complex-numbers/.docs/instructions.md +++ b/exercises/practice/complex-numbers/.docs/instructions.md @@ -24,6 +24,6 @@ Raising e to a complex exponent can be expressed as `e^(a + i * b) = e^a * e^(i Implement the following operations: - addition, subtraction, multiplication and division of two complex numbers, -- conjugate, absolute value, exponent of a given complex number. +- conjugate and absolute value of a given complex number. Assume the programming language you are using does not have an implementation of complex numbers.