Closed
Description
The signature of compute_amplitudes_sweep and compute_amplitudes requires bitstrings to be a list of int's. Because of the semantics in python3 of not allowing leading zeros for int's (https://stackoverflow.com/questions/36386346/syntaxerror-invalid-token) this can be confusing.
For eg: if I want to measure a bitstring 0010, I need to provide 10 as input to the bitstring which is confusing to the user.
I propose to change the type of bitstrings to Sequence[str].