How can I tell which functions are allowed? My solution (which works on my own computer) uses only functions imported from data.polynomial, data.complex.exponential, and analysis.special_functions.trigonometric, but codewars gives me unknown identifier messages for some of these functions.
Thanks!
How can I tell which functions are allowed? My solution (which works on my own computer) uses only functions imported from
data.polynomial
,data.complex.exponential
, andanalysis.special_functions.trigonometric
, but codewars gives me unknown identifier messages for some of these functions.You can use
existsi
instead ofuse
.