1.0.0 • Published 1 year ago

condorcet-winner v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

condorcet-winner

This library is a TypeScript implementation of the Condorcet method for determining the winner of a Condorcet paradox election.

Installation

yarn add condorcet-winner

Usage

import { condorcetWinner } from 'condorcet-winner';

const winner = condorcetWinner(
  ['A', 'B', 'C'],
  [
    ['A', 'B', 'C'],
    ['B', 'A', 'C'],
    ['C', 'A', 'B'],
  ],
);

console.log(winner); // 'A'