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); }