import json
import pennylane as qml
import pennylane.numpy as np
# Step 1: initialize a device
dev = # Put your code here #

# Step 2: Add a decorator below

def simple_circuit(angle):

"""
In this function:
* Rotate the qubit around the y-axis by angle
* Measure the expectation value of the Pauli X observable

Args:
angle (float): how much to rotate a state around the y-axis

Returns:
Union[tensor, float]: The expectation value of the Pauli X observable
"""

# Step 3: Add gates to the QNode

# Put your code here #

# Step 4: Return the required expectation value

# These functions are responsible for testing the solution.
def run(test_case_input: str) -> str:
angle = json.loads(test_case_input)
output = simple_circuit(angle)

return str(output)

def check(solution_output: str, expected_output: str) -> None:
solution_output = json.loads(solution_output)
expected_output = json.loads(expected_output)
assert np.allclose(solution_output, expected_output, rtol=1e-4)

# These are the public test cases
test_cases = [
('1.23456', '0.9440031218347901'),
('2.957', '0.1835461227247332')
]
# This will run the public test cases locally
for i, (input_, expected_output) in enumerate(test_cases):
print(f"Running test case {i} with input '{input_}'...")

try:
output = run(input_)

except Exception as exc:
print(f"Runtime Error. {exc}")

else:
if message := check(output, expected_output):
print(f"Wrong Answer. Have: '{output}'. Want: '{expected_output}'.")

else:
print("Correct!")

or to submit your code