prashanth-up / qchack-microsoft-challenge

Microsoft's challenge for QCHack 2021

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to Microsoft challenge at QCHack 2021!

We are excited to offer this challenge to QCHack 2021 participants, and we are looking forward to the solutions you will come up with!

Challenge overview

Grover's search algorithm is one of the fundamental algorithms of quantum computing. At the same time it is frequently misinterpreted and misrepresented, and figuring out how to apply it to solve a given problem can be quite challenging! The main part of the challenge is implementing the given problem as a quantum oracle - the core part of Grover's algorithm.

This challenge consists of two parts. In part 1, you will explore implementing given classical problems of varying complexity as quantum oracles. In part 2, you will come up with an interesting problem yourself, and solve it using Grover's search.

To participate in this challenge, you must use Q# programming language and tools available as part of the Microsoft Quantum Development Kit. You do not need to use Azure Quantum to run your solutions on quantum hardware.

Part 1: Automatically judged tasks

Part 1 of this challenge can be found in folder Part1. It contains 4 independent tasks of increasing difficulty: task 1 is the easiest one, and task 4 is quite challenging.

In each task you need to implement a marking quantum oracle for a classical function by filling in the code in the given Q# operation. The task description and the operation skeleton are given in the file Tasks.qs; this is the only file you should modify in the task.

The file Tests.qs contains the testing harness for the task. Once you solved the task and wrote the code for it, you can run the provided test to verify that the your solution to the task is correct. The workflow of working on the task is extremely similar to that of working on the Quantum Katas. You can read more about opening the project and running the test here.

We will evaluate your solutions to the tasks using similar testing harnesses, possibly including more tests than were provided to you. If your solution to a task passes the tests, you get the points for that task! The point values for tasks are:

Part 2: Free-form project

In part 2 of the challenge, you will come up with a problem you'd like to solve using Grover's search, and create a project that solves this problem! There is no "right" or "wrong" way to solve this challenge; you have the freedom to decide what you want to do and how far you want to go!

Your project for part 2:

  • Must include a problem description and instructions on running the project in README.md file.
  • Must solve a small instance of the problem using a full-state simulator without any user input, or with a well-documented user input. If your solution requires an input, its format should be documented in README.md, including an example.
  • Must produce an output presenting the instance of the problem solved and the solution in human-readable format.
  • Must be original, i.e., not previously covered in Quantum Development Kit samples, learning materials, or the Quantum Katas.

The judging for part 2 of the challenge will be more flexible than for part 1. Since there is no single "right" solution, we'll be evaluating the projects based on several criteria. Here is the list of criteria and example questions we'll consider when evaluating the projects:

  • Technical depth (6 points). How complicated is the selected problem? How well is it solved?
  • Use of tools (5 points). Evaluates the breadth of Quantum Development Kit tools used in the project. Is the project relying on the libraries to maximize code readability? Is the oracle implementation covered by unit tests? Does the project use specialized simulators and/or resource estimation? Is the solution to the problem displayed using a clever visualization?
  • Creativity (4 points). How original is the problem selection? How creative is the output presentation?
  • Educational value (5 points): Is this project valuable for helping others learn? Did the team write a blog post about the project sharing their learnings with others? Is the project structured as a tutorial?

For the general guidelines on judging projects, please refer to the Official QCHack Hacking Rules 2021.

Submitting your solutions

To submit your solutions:

  1. Fork (or duplicate) this repository to your GitHub account.
  2. Work on the solutions to the tasks from part 1 and the project from part 2.
  3. Commit your work to your forked repository.
    For part 1 tasks, you should only modify Tasks.qs files. For part 2 project, commit any files you consider relevant: the project itself, screenshots of results, any visualizations you've done, etc.
  4. To submit your project, submit the link to your repository.
    Your repository has to be made public at the time of the Hackathon end for us to be able to judge your solutions. We don't recommend making your work public early during the Hackathon, so as not to tempt other teams to borrow from your work. Let everybody enjoy their exploration!
    Note that GitHub doesn't allow to change visibility of the forks. You can either fork the repository, keep it public, and push your changes at the last possible moment, or you can duplicate the repository, make it private to work on it during the Hackathon, and make it public at the end of the Hackathon. Your repo is not required to be an actual fork, it just has to follow the folder structure of this repo for Part 1 tasks.
  5. If your project for part 2 includes a blog post about your project, publish it shortly after the Hackathon end and add a link to it to your GitHub repository.

For the general guidelines on judging projects, please refer to the Official QCHack Hacking Rules 2021.

Eligibility and prizes

The (6) highest cumulative team scores from parts 1 and 2 of the challenge will receive a $250 Visa Gift Card (physical or virtual) for the team. The winning teams will have an opportunity to present their projects to the Microsoft Quantum Team, at a later date and time (to be scheduled after the results announcement).

Government officials and Microsoft employees are not eligible to participate in this challenge.

For the general rules on eligibility and prizes, please refer to the Official QCHack Hacking Rules 2021.

Resources

Here is a list of resources to help you learn more about various parts of our challenge:

Microsoft Quantum Development Kit installation

For this Hackathon, you will need to install at least the standalone QDK, and possibly (depending on what kind of project you decide to do) integration with Q# Jupyter Notebooks or with Python.

We also recommend you to install the Quantum Katas, since a lot of learning and practice resources in this list are from that resource.

Quantum oracles (tutorials and programming exercises)

Grover's search algorithm (with more practice for oracles implementation)

Rules

This page lists Microsoft additional unique rules for its Challenge, including judging criteria, submission guidelines, eligibility and prizes. Please refer to the Official QCHack Hacking Rules 2021 for general QCHack rules.

Binder

About

Microsoft's challenge for QCHack 2021


Languages

Language:Q# 71.2%Language:C# 26.7%Language:Dockerfile 2.1%