Parity function
Namespace: Microsoft.Quantum.Bitwise
Package: Microsoft.Quantum.QSharp.Foundation
Returns the bitwise PARITY of an integer.
function Parity (a : Int) : Int
Description
This function returns the bitwise parity of the
two's complement
representation of its input, returning 1 if that representation
contains an odd number of ones, and returning 0 otherwise.
Input
a : Int
Output : Int
Example
let a = 248;
let x = Parity(a); // x : Int = 1.
反馈
提交和查看相关反馈