CS 5408: Game Theory for Computing - Fall 2022


Assignments

Homework 1 (Solution) -- Due Sept 9, 2022 (Extended to Sept 11, 2022)

Homework 2a (Solution) -- Due Sept 27, 2022
Homework 2b (Solution) -- Due Oct 20, 2022.

Homework 3 (Solution) -- Due Oct 17, 2022.

Homework 4a (Solution) -- Due Nov 10, 2022
Homework 4b (Solution) -- Due Dec 9, 2022

Homework 5 (Solution) -- Due Nov 21, 2022

Homework 6 (Solution) -- Due Dec 9, 2022

Submitting HW Assignments on Gitlab

  1. Log into https://git-classes.mst.edu with your S&T login
  2. Students will be given access to the Git repository as 'developers'. As a result, they can clone the master branch and submit their respective assignments by following the procedure given below:


    Execute once:
    # To clone a repository:
    $ git clone <web-address>


    Execute as many times as you like from within the directory/repository you cloned to your hard drive (just an example):
    # To check the status of your repository:
    $ git status

    # To stage/add a file:
    $ git add *.py *.pdf *.md

    # To add a folder:
    $ git add SUBDIRECTORY/*

    # To commit changes and document them:
    $ git commit -m "Informative description of the commit"

    # To submit your assignments:
    $ git push origin HEAD


    Do not add:
    Compiled or generated files like *.out, *.log, *.syntex.gz, *.bib, your executable files, etc. Put the name of these files in a text file named .gitignore
    If you see your changes reflected on the git-classes site, you have submitted successfully.