From e90874949648b4af50bb2e9c3947f534407a73c4 Mon Sep 17 00:00:00 2001 From: Haksell Date: Sat, 2 May 2020 09:58:51 +0200 Subject: [PATCH] Remove unused C array from answer 35 --- source/exercises100.ktx | 1 - 1 file changed, 1 deletion(-) diff --git a/source/exercises100.ktx b/source/exercises100.ktx index 1840c420..1c502167 100644 --- a/source/exercises100.ktx +++ b/source/exercises100.ktx @@ -416,7 +416,6 @@ hint: np.add(out=), np.negative(out=), np.multiply(out=), np.divide(out=) < a35 A = np.ones(3)*1 B = np.ones(3)*2 -C = np.ones(3)*3 np.add(A,B,out=B) np.divide(A,2,out=A) np.negative(A,out=A)