mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 20:43:06 +02:00
8 lines
194 B
Python
8 lines
194 B
Python
import pandas as pd
|
|
|
|
def test_positives(prime, primes_obtained):
|
|
assert prime in primes_obtained
|
|
|
|
|
|
def test_negatives(composite, primes_obtained):
|
|
assert composite not in primes_obtained |