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.119 tracks/python/exercises/strain/example.py
trackler-2.2.1.118 tracks/python/exercises/strain/example.py
trackler-2.2.1.117 tracks/python/exercises/strain/example.py
trackler-2.2.1.116 tracks/python/exercises/strain/example.py
trackler-2.2.1.115 tracks/python/exercises/strain/example.py
trackler-2.2.1.114 tracks/python/exercises/strain/example.py
trackler-2.2.1.113 tracks/python/exercises/strain/example.py
trackler-2.2.1.111 tracks/python/exercises/strain/example.py
trackler-2.2.1.110 tracks/python/exercises/strain/example.py
trackler-2.2.1.109 tracks/python/exercises/strain/example.py
trackler-2.2.1.108 tracks/python/exercises/strain/example.py
trackler-2.2.1.107 tracks/python/exercises/strain/example.py
trackler-2.2.1.106 tracks/python/exercises/strain/example.py
trackler-2.2.1.105 tracks/python/exercises/strain/example.py
trackler-2.2.1.104 tracks/python/exercises/strain/example.py
trackler-2.2.1.103 tracks/python/exercises/strain/example.py
trackler-2.2.1.102 tracks/python/exercises/strain/example.py
trackler-2.2.1.101 tracks/python/exercises/strain/example.py
trackler-2.2.1.100 tracks/python/exercises/strain/example.py
trackler-2.2.1.99 tracks/python/exercises/strain/example.py