Error message for codercise F.2.2

Hi all, I’m trying to solve codercise F.2.2 in the codebook. My solution looks like this:

dev = qml.device("default.qubit", wires=num_wires)

@qml.qnode(dev)
def two_qubit_QFT(basis_id):
    """A circuit that computes the QFT on two qubits using qml.QubitUnitary. 
    
    Args:
        basis_id (int): An integer value identifying the basis state to construct.
    
    Returns:
        array[complex]: The state of the qubits after the QFT operation.
    """
    
    # Prepare the basis state |basis_id>
    bits = [int(x) for x in np.binary_repr(basis_id, width=num_wires)]
    qml.BasisState(bits, wires=[0, 1])
    
    ##################
    # YOUR CODE HERE #
    ##################
    N = 2 ** num_wires
    omega = np.exp((2 * (0 + 1j) * np.pi) / N)
    fourier_matrix = np.zeros((2 ** num_wires, 2 ** num_wires))
    for i in range(N):
        for j in range(N):
             fourier_matrix[i][j] = omega ** (i * j)
    fourier_matrix = fourier_matrix / np.sqrt(N)
    qml.QubitUnitary(fourier_matrix, wires=[0, 1])
    
    return qml.state()

When I submit the code: I get an error message that says “Error: ‘import’”. Is this an error in my code, or is there an issue with the codebook itself?

Hi @justin6626 ,

I can confirm that your solution is not correct.

It looks like you’re having some issues because complex numbers are being cast to real ones. This is why you’re getting an import error, because your code is trying to throw an error that is unknown to the grader.

Try to think of a different way of solving the problem. You can use Python’s complex() function to generate complex numbers when needed.

I hope this helps!