Skip to content
Snippets Groups Projects
Commit 5a3528be authored by nilsl99's avatar nilsl99
Browse files

Fixed signatures of put and remove

parent 1a7fb7f1
No related branches found
No related tags found
No related merge requests found
...@@ -44,10 +44,10 @@ class SkipListe(): ...@@ -44,10 +44,10 @@ class SkipListe():
enthält, zurück. enthält, zurück.
""" """
def put(k, v): def put(self, k, v):
"""Fügt einen Knoten mit dem Wert v und Schlüssel k an der richtigen """Fügt einen Knoten mit dem Wert v und Schlüssel k an der richtigen
Stelle ein. Stelle ein.
""" """
def remove(k): def remove(self, k):
"""Entfernt alle Knoten mit dem Schlüssel k aus allen Listen.""" """Entfernt alle Knoten mit dem Schlüssel k aus allen Listen."""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment