pub trait Oracle { // Required method fn query(&self, input: &[String]) -> Option<String>; }
An oracle that can answer membership queries about the target function.
Given an input, return the expected output (consulting the oracle).