From 7511ffef6513a067580ee6fa777c454e2690bb5d Mon Sep 17 00:00:00 2001 From: fdai7303 Date: Thu, 23 Nov 2023 08:00:00 +0100 Subject: [PATCH] =?UTF-8?q?Leo:=20Leichte=20formatierungs-=C3=84nderungen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SparseVector.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SparseVector.java b/SparseVector.java index 34598d4..95a8184 100644 --- a/SparseVector.java +++ b/SparseVector.java @@ -96,8 +96,7 @@ public class SparseVector { } if (now != null && now.index == index) { pre.next = now.next; - // System.out.println("index " + index + " found and the value " + now.value + " - // deleted."); + // System.out.println("index " + index + " found and the value " + now.value + " deleted."); } else { // System.out.println("Element not found with index " + index); }