Please make a voltage divider that splits the provided voltage evenly.
dc_value = "dc analysis not found" for response in submission[0]: if response[0] == 'dc': for node in response[1:]: dc_value = node['output'] if dc_value == .5: correct = ['correct'] else: correct = ['incorrect']

Make a high pass filter

ac_values = None for response in submission[0]: if response[0] == 'ac': for node in response[1:]: ac_values = node['NodeA'] print("the ac analysis value:", ac_values) if ac_values == None: correct = ['incorrect'] elif ac_values[0][1] < ac_values[1][1]: correct = ['correct'] else: correct = ['incorrect']

Explanation

A voltage divider that evenly divides the input voltage can be formed with two identically valued resistors, with the sampled voltage taken in between the two.

A simple high-pass filter without any further constaints can be formed by simply putting a resister in series with a capacitor. The actual values of the components do not really matter in order to meet the constraints of the problem.