Skip to main content

An Introduction To Q#

Introduction In this article, I will be explaining about Q# – the new programming language introduced by Microsoft for quantum computing. We will understand the data type, expressions, and statements of Q# with the help of code snippets. Prerequisites Please visit my earlier article An Introduction To Quantum Computing to get a basic understanding of Quantum Computing and […]

Read More

Merge Sort Algorithm In C#

Introduction In this article, I will be discussing Merge sort algorithm. Merge sort is a comparison based sorting algorithm based on the divide and conquer approach. The input array will be divided into subarrays and those subarrays will be further divided until each subarray contains a single element. Then, these subarrays will be merged together […]

Read More