├── .gitignore ├── README.md ├── bonus └── secvault │ └── secvault_td.tex ├── genpdfs.sh └── regular ├── 1 ├── a │ ├── binary-digits │ │ └── binary-digits_td.tex │ ├── ispalindrom │ │ └── ispalindrom_td.tex │ ├── mycompress │ │ └── mycompress_td.tex │ ├── mydiff │ │ └── mydiff_td.tex │ ├── myexpand │ │ └── myexpand_td.tex │ ├── mygrep │ │ └── mygrep_td.tex │ ├── mysort │ │ └── mysort_td.tex │ ├── postfixcalc │ │ └── postfixcalc_td.tex │ └── stegit │ │ └── stegit_td.tex └── b │ ├── battleship │ ├── battleship_td.tex │ ├── common.h │ ├── map.pdf │ ├── map.svg │ └── server.template.c │ ├── coffeemaker │ └── coffeemaker_td.tex │ ├── mastermind │ └── mastermind_td.tex │ └── random_np │ ├── 3coloring.tex │ └── fb_arc_set.tex ├── 2 ├── BonusExercise.tex ├── calc │ └── calc_td.tex ├── cpair │ └── cpair_td.tex ├── dsort │ └── dsort_td.tex ├── encr │ └── encr_td.tex ├── forkFFT │ └── forkFFT_td.tex ├── forksort │ └── forksort_td.tex ├── hashsum │ └── hashsum_td.tex ├── intmul │ └── intmul_td.tex ├── mygzip │ └── mygzip_td.tex ├── proxy │ └── proxy_td.tex ├── randsched │ └── randsched_td.tex ├── stillepost │ └── stillepost_td.tex └── websh │ └── websh_td.tex ├── 3 ├── 2048 │ └── 2048_td.tex ├── 4wins │ └── 4wins_td.tex ├── auth │ └── auth_td.tex ├── banking │ └── banking_td.tex ├── battleships │ └── battleships_td.tex ├── caesar │ └── caesar_td.tex ├── calendar │ └── calendar_td.tex ├── chstat │ └── chstat_td.tex ├── hangman │ └── hangman_td.tex ├── http │ ├── http.tex │ └── test-website │ │ ├── cat.png │ │ ├── countdown.js │ │ └── index.html ├── integrate │ ├── integfigure.ltx │ ├── integfigure.pdf │ └── integrate_td.tex ├── lastmsg │ └── lastmsg_td.tex ├── mrna │ └── mrna_td.tex ├── procdb │ └── procdb_td.tex ├── sortserver │ └── sortserver_td.tex ├── storetool │ └── storetool_td.tex └── tictactoe │ └── tictactoe_td.tex ├── guidelines ├── ex1.ltx ├── ex2.ltx ├── ex3.ltx ├── general.ltx ├── guidelines.tex └── rules.ltx └── template.ltx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/README.md -------------------------------------------------------------------------------- /bonus/secvault/secvault_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/bonus/secvault/secvault_td.tex -------------------------------------------------------------------------------- /genpdfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/genpdfs.sh -------------------------------------------------------------------------------- /regular/1/a/binary-digits/binary-digits_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/binary-digits/binary-digits_td.tex -------------------------------------------------------------------------------- /regular/1/a/ispalindrom/ispalindrom_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/ispalindrom/ispalindrom_td.tex -------------------------------------------------------------------------------- /regular/1/a/mycompress/mycompress_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/mycompress/mycompress_td.tex -------------------------------------------------------------------------------- /regular/1/a/mydiff/mydiff_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/mydiff/mydiff_td.tex -------------------------------------------------------------------------------- /regular/1/a/myexpand/myexpand_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/myexpand/myexpand_td.tex -------------------------------------------------------------------------------- /regular/1/a/mygrep/mygrep_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/mygrep/mygrep_td.tex -------------------------------------------------------------------------------- /regular/1/a/mysort/mysort_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/mysort/mysort_td.tex -------------------------------------------------------------------------------- /regular/1/a/postfixcalc/postfixcalc_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/postfixcalc/postfixcalc_td.tex -------------------------------------------------------------------------------- /regular/1/a/stegit/stegit_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/a/stegit/stegit_td.tex -------------------------------------------------------------------------------- /regular/1/b/battleship/battleship_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/battleship/battleship_td.tex -------------------------------------------------------------------------------- /regular/1/b/battleship/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/battleship/common.h -------------------------------------------------------------------------------- /regular/1/b/battleship/map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/battleship/map.pdf -------------------------------------------------------------------------------- /regular/1/b/battleship/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/battleship/map.svg -------------------------------------------------------------------------------- /regular/1/b/battleship/server.template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/battleship/server.template.c -------------------------------------------------------------------------------- /regular/1/b/coffeemaker/coffeemaker_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/coffeemaker/coffeemaker_td.tex -------------------------------------------------------------------------------- /regular/1/b/mastermind/mastermind_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/mastermind/mastermind_td.tex -------------------------------------------------------------------------------- /regular/1/b/random_np/3coloring.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/random_np/3coloring.tex -------------------------------------------------------------------------------- /regular/1/b/random_np/fb_arc_set.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/1/b/random_np/fb_arc_set.tex -------------------------------------------------------------------------------- /regular/2/BonusExercise.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/BonusExercise.tex -------------------------------------------------------------------------------- /regular/2/calc/calc_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/calc/calc_td.tex -------------------------------------------------------------------------------- /regular/2/cpair/cpair_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/cpair/cpair_td.tex -------------------------------------------------------------------------------- /regular/2/dsort/dsort_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/dsort/dsort_td.tex -------------------------------------------------------------------------------- /regular/2/encr/encr_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/encr/encr_td.tex -------------------------------------------------------------------------------- /regular/2/forkFFT/forkFFT_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/forkFFT/forkFFT_td.tex -------------------------------------------------------------------------------- /regular/2/forksort/forksort_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/forksort/forksort_td.tex -------------------------------------------------------------------------------- /regular/2/hashsum/hashsum_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/hashsum/hashsum_td.tex -------------------------------------------------------------------------------- /regular/2/intmul/intmul_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/intmul/intmul_td.tex -------------------------------------------------------------------------------- /regular/2/mygzip/mygzip_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/mygzip/mygzip_td.tex -------------------------------------------------------------------------------- /regular/2/proxy/proxy_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/proxy/proxy_td.tex -------------------------------------------------------------------------------- /regular/2/randsched/randsched_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/randsched/randsched_td.tex -------------------------------------------------------------------------------- /regular/2/stillepost/stillepost_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/stillepost/stillepost_td.tex -------------------------------------------------------------------------------- /regular/2/websh/websh_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/2/websh/websh_td.tex -------------------------------------------------------------------------------- /regular/3/2048/2048_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/2048/2048_td.tex -------------------------------------------------------------------------------- /regular/3/4wins/4wins_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/4wins/4wins_td.tex -------------------------------------------------------------------------------- /regular/3/auth/auth_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/auth/auth_td.tex -------------------------------------------------------------------------------- /regular/3/banking/banking_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/banking/banking_td.tex -------------------------------------------------------------------------------- /regular/3/battleships/battleships_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/battleships/battleships_td.tex -------------------------------------------------------------------------------- /regular/3/caesar/caesar_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/caesar/caesar_td.tex -------------------------------------------------------------------------------- /regular/3/calendar/calendar_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/calendar/calendar_td.tex -------------------------------------------------------------------------------- /regular/3/chstat/chstat_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/chstat/chstat_td.tex -------------------------------------------------------------------------------- /regular/3/hangman/hangman_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/hangman/hangman_td.tex -------------------------------------------------------------------------------- /regular/3/http/http.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/http/http.tex -------------------------------------------------------------------------------- /regular/3/http/test-website/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/http/test-website/cat.png -------------------------------------------------------------------------------- /regular/3/http/test-website/countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/http/test-website/countdown.js -------------------------------------------------------------------------------- /regular/3/http/test-website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/http/test-website/index.html -------------------------------------------------------------------------------- /regular/3/integrate/integfigure.ltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/integrate/integfigure.ltx -------------------------------------------------------------------------------- /regular/3/integrate/integfigure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/integrate/integfigure.pdf -------------------------------------------------------------------------------- /regular/3/integrate/integrate_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/integrate/integrate_td.tex -------------------------------------------------------------------------------- /regular/3/lastmsg/lastmsg_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/lastmsg/lastmsg_td.tex -------------------------------------------------------------------------------- /regular/3/mrna/mrna_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/mrna/mrna_td.tex -------------------------------------------------------------------------------- /regular/3/procdb/procdb_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/procdb/procdb_td.tex -------------------------------------------------------------------------------- /regular/3/sortserver/sortserver_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/sortserver/sortserver_td.tex -------------------------------------------------------------------------------- /regular/3/storetool/storetool_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/storetool/storetool_td.tex -------------------------------------------------------------------------------- /regular/3/tictactoe/tictactoe_td.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/3/tictactoe/tictactoe_td.tex -------------------------------------------------------------------------------- /regular/guidelines/ex1.ltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/guidelines/ex1.ltx -------------------------------------------------------------------------------- /regular/guidelines/ex2.ltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/guidelines/ex2.ltx -------------------------------------------------------------------------------- /regular/guidelines/ex3.ltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/guidelines/ex3.ltx -------------------------------------------------------------------------------- /regular/guidelines/general.ltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/guidelines/general.ltx -------------------------------------------------------------------------------- /regular/guidelines/guidelines.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/guidelines/guidelines.tex -------------------------------------------------------------------------------- /regular/guidelines/rules.ltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/guidelines/rules.ltx -------------------------------------------------------------------------------- /regular/template.ltx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osue-tuwien/exercises/HEAD/regular/template.ltx --------------------------------------------------------------------------------