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.2.1.180 tracks/python/exercises/strain/example.py
trackler-2.2.1.179 tracks/python/exercises/strain/example.py
trackler-2.2.1.178 tracks/python/exercises/strain/example.py
trackler-2.2.1.177 tracks/python/exercises/strain/example.py
trackler-2.2.1.176 tracks/python/exercises/strain/example.py
trackler-2.2.1.175 tracks/python/exercises/strain/example.py
trackler-2.2.1.174 tracks/python/exercises/strain/example.py
trackler-2.2.1.173 tracks/python/exercises/strain/example.py
trackler-2.2.1.172 tracks/python/exercises/strain/example.py
trackler-2.2.1.171 tracks/python/exercises/strain/example.py
trackler-2.2.1.170 tracks/python/exercises/strain/example.py
trackler-2.2.1.169 tracks/python/exercises/strain/example.py
trackler-2.2.1.167 tracks/python/exercises/strain/example.py
trackler-2.2.1.166 tracks/python/exercises/strain/example.py
trackler-2.2.1.165 tracks/python/exercises/strain/example.py
trackler-2.2.1.164 tracks/python/exercises/strain/example.py
trackler-2.2.1.163 tracks/python/exercises/strain/example.py
trackler-2.2.1.162 tracks/python/exercises/strain/example.py
trackler-2.2.1.161 tracks/python/exercises/strain/example.py
trackler-2.2.1.160 tracks/python/exercises/strain/example.py