Skip to content

Instantly share code, notes, and snippets.

View cclinet's full-sized avatar

cclin cclinet

  • Mars
View GitHub Profile
@cclinet
cclinet / regret_matching.py
Created December 16, 2020 10:57 — forked from namoshizun/regret_matching.py
Use regret matching to play rock-paper-scissors
from __future__ import division
from random import random
import numpy as np
import pandas as pd
"""
Use regret-matching algorithm to play Scissors-Rock-Paper.
"""