Sha256: ad5345c91f345fdd77b70226528750c5fc3289aee7c75db58ac8255d8b6699d7

Contents?: true

Size: 338 Bytes

Versions: 104

Compression:

Stored size: 338 Bytes

Contents

## Hints

To support `list()`, see [implementing an iterator for a class.](https://docs.python.org/3/tutorial/classes.html#iterators)

Additionally, note that Python2's `next()` has been replaced by `__next__()` in Python3. For dual compatibility, `next()` can be implemented as:

```Python
def next(self):
    return self.__next__()
```

Version data entries

104 entries across 104 versions & 1 rubygems

Version Path
trackler-2.2.1.78 tracks/python/exercises/simple-linked-list/.meta/hints.md
trackler-2.2.1.77 tracks/python/exercises/simple-linked-list/.meta/hints.md
trackler-2.2.1.76 tracks/python/exercises/simple-linked-list/.meta/hints.md
trackler-2.2.1.75 tracks/python/exercises/simple-linked-list/.meta/hints.md