mirror of
https://github.com/kristoferssolo/grovers-visualizer.git
synced 2025-10-21 20:10:35 +00:00
16 lines
291 B
Python
16 lines
291 B
Python
#!/usr/bin/env python
|
|
"""Grover's Algorithm Visualizer.
|
|
|
|
This script builds a Grover search circuit based on user input, runs the
|
|
simulation using Qiskit's Aer simulator, and visualizes the results
|
|
using matplotlib.
|
|
"""
|
|
|
|
|
|
def main() -> None:
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|