Sha256: bc55ed8ffe3f77b1dc4216c137830e3fe1502d597c56641333193211fb16fd6c

Contents?: true

Size: 241 Bytes

Versions: 396

Compression:

Stored size: 241 Bytes

Contents

def keep(seq, pred):
    res = []
    for el in seq:
        if pred(el):
            res.append(el)
    return res


def discard(seq, pred):
    res = []
    for el in seq:
        if not pred(el):
            res.append(el)
    return res

Version data entries

396 entries across 396 versions & 1 rubygems

Version Path
trackler-2.0.0.5 tracks/python/exercises/strain/example.py
trackler-2.0.0.4 tracks/python/exercises/strain/example.py
trackler-2.0.0.3 tracks/python/exercises/strain/example.py
trackler-2.0.0.2 tracks/python/exercises/strain/example.py
trackler-2.0.0.1 tracks/python/exercises/strain/example.py
trackler-2.0.0.0 tracks/python/exercises/strain/example.py
trackler-1.0.4.1 tracks/python/exercises/strain/example.py
trackler-1.0.4.0 tracks/python/exercises/strain/example.py
trackler-1.0.3.0 tracks/python/exercises/strain/example.py
trackler-1.0.2.1 tracks/python/exercises/strain/example.py
trackler-1.0.2.0 tracks/python/exercises/strain/example.py
trackler-1.0.1.2 tracks/python/exercises/strain/example.py
trackler-1.0.1.1 tracks/python/exercises/strain/example.py
trackler-1.0.1.0 tracks/python/exercises/strain/example.py
trackler-1.0.0.1 tracks/python/exercises/strain/example.py
trackler-1.0.0 tracks/python/exercises/strain/example.py