├── .gitignore ├── README.md ├── pset1 ├── README.md ├── cash │ ├── README.md │ └── cash.c ├── credit │ ├── README.md │ └── credit.c ├── hello │ ├── README.md │ └── hello.c └── mario │ ├── less │ ├── README.md │ └── mario.c │ └── more │ ├── README.md │ └── mario.c ├── pset2 ├── README.md ├── caesar │ ├── README.md │ └── caesar.c ├── crack │ ├── README.md │ └── crack.c └── vigenere │ ├── README.md │ └── vigenere.c ├── pset3 ├── README.md └── music │ ├── Makefile │ ├── README.md │ ├── bday.txt │ ├── helpers.c │ ├── helpers.h │ ├── notes.c │ ├── songs │ ├── boat.txt │ ├── jeopardy.txt │ ├── london.txt │ ├── mary.txt │ ├── surprise.txt │ ├── twinkle.txt │ └── weezer.txt │ ├── synthesize.c │ ├── wav.c │ └── wav.h ├── pset4 ├── README.md ├── recover │ ├── README.md │ ├── card.raw │ └── recover.c ├── resize │ ├── less │ │ ├── README.md │ │ ├── bmp.h │ │ ├── copy.c │ │ ├── large.bmp │ │ ├── resize.c │ │ ├── small.bmp │ │ └── smiley.bmp │ └── more │ │ ├── README.md │ │ ├── bmp.h │ │ ├── copy.c │ │ ├── large.bmp │ │ ├── resize.c │ │ ├── small.bmp │ │ └── smiley.bmp └── whodunit │ ├── README.md │ ├── bmp.h │ ├── clue.bmp │ ├── copy.c │ ├── large.bmp │ ├── small.bmp │ └── smiley.bmp ├── pset5 ├── README.md └── speller │ ├── README.md │ ├── bloom_filter │ ├── Makefile │ ├── README.md │ ├── bloom.c │ ├── bloom.h │ ├── dictionaries │ │ ├── large │ │ └── small │ ├── dictionary.c │ ├── dictionary.h │ ├── djb2.c │ ├── djb2.h │ ├── jenkins.c │ ├── jenkins.h │ ├── keys │ │ ├── aca.txt │ │ ├── austen.txt │ │ ├── bible.txt │ │ ├── birdman.txt │ │ ├── burnett.txt │ │ ├── carroll.txt │ │ ├── cat.txt │ │ ├── constitution.txt │ │ ├── federalist.txt │ │ ├── frankenstein.txt │ │ ├── grimm.txt │ │ ├── her.txt │ │ ├── holmes.txt │ │ ├── homer.txt │ │ ├── koran.txt │ │ ├── lalaland.txt │ │ ├── mansfield.txt │ │ ├── pneumonoultramicroscopicsilicovolcanoconiosis.txt │ │ ├── revenant.txt │ │ ├── rinehart.txt │ │ ├── shakespeare.txt │ │ ├── stein.txt │ │ ├── stoker.txt │ │ ├── surgery.txt │ │ ├── tolstoy.txt │ │ ├── wells.txt │ │ ├── whittier.txt │ │ ├── wordsworth.txt │ │ ├── xueqin1.txt │ │ └── xueqin2.txt │ ├── speller │ ├── speller.c │ └── texts │ │ ├── aca.txt │ │ ├── austen.txt │ │ ├── bible.txt │ │ ├── birdman.txt │ │ ├── burnett.txt │ │ ├── carroll.txt │ │ ├── cat.txt │ │ ├── constitution.txt │ │ ├── federalist.txt │ │ ├── frankenstein.txt │ │ ├── grimm.txt │ │ ├── her.txt │ │ ├── holmes.txt │ │ ├── homer.txt │ │ ├── koran.txt │ │ ├── lalaland.txt │ │ ├── mansfield.txt │ │ ├── pneumonoultramicroscopicsilicovolcanoconiosis.txt │ │ ├── revenant.txt │ │ ├── rinehart.txt │ │ ├── shakespeare.txt │ │ ├── stein.txt │ │ ├── stoker.txt │ │ ├── surgery.txt │ │ ├── tolstoy.txt │ │ ├── wells.txt │ │ ├── whittier.txt │ │ ├── wordsworth.txt │ │ ├── xueqin1.txt │ │ └── xueqin2.txt │ ├── hashtable │ ├── Makefile │ ├── README.md │ ├── dictionaries │ │ ├── large │ │ └── small │ ├── dictionary.c │ ├── dictionary.h │ ├── djb2.c │ ├── djb2.h │ ├── keys │ │ ├── aca.txt │ │ ├── austen.txt │ │ ├── bible.txt │ │ ├── birdman.txt │ │ ├── burnett.txt │ │ ├── carroll.txt │ │ ├── cat.txt │ │ ├── constitution.txt │ │ ├── federalist.txt │ │ ├── frankenstein.txt │ │ ├── grimm.txt │ │ ├── her.txt │ │ ├── holmes.txt │ │ ├── homer.txt │ │ ├── koran.txt │ │ ├── lalaland.txt │ │ ├── mansfield.txt │ │ ├── pneumonoultramicroscopicsilicovolcanoconiosis.txt │ │ ├── revenant.txt │ │ ├── rinehart.txt │ │ ├── shakespeare.txt │ │ ├── stein.txt │ │ ├── stoker.txt │ │ ├── surgery.txt │ │ ├── tolstoy.txt │ │ ├── wells.txt │ │ ├── whittier.txt │ │ ├── wordsworth.txt │ │ ├── xueqin1.txt │ │ └── xueqin2.txt │ ├── speller.c │ └── texts │ │ ├── aca.txt │ │ ├── austen.txt │ │ ├── bible.txt │ │ ├── birdman.txt │ │ ├── burnett.txt │ │ ├── carroll.txt │ │ ├── cat.txt │ │ ├── constitution.txt │ │ ├── federalist.txt │ │ ├── frankenstein.txt │ │ ├── grimm.txt │ │ ├── her.txt │ │ ├── holmes.txt │ │ ├── homer.txt │ │ ├── koran.txt │ │ ├── lalaland.txt │ │ ├── mansfield.txt │ │ ├── pneumonoultramicroscopicsilicovolcanoconiosis.txt │ │ ├── revenant.txt │ │ ├── rinehart.txt │ │ ├── shakespeare.txt │ │ ├── stein.txt │ │ ├── stoker.txt │ │ ├── surgery.txt │ │ ├── tolstoy.txt │ │ ├── wells.txt │ │ ├── whittier.txt │ │ ├── wordsworth.txt │ │ ├── xueqin1.txt │ │ └── xueqin2.txt │ └── trie │ ├── Makefile │ ├── README.md │ ├── dictionaries │ ├── large │ └── small │ ├── dictionary.c │ ├── dictionary.h │ ├── keys │ ├── aca.txt │ ├── austen.txt │ ├── bible.txt │ ├── birdman.txt │ ├── burnett.txt │ ├── carroll.txt │ ├── cat.txt │ ├── constitution.txt │ ├── federalist.txt │ ├── frankenstein.txt │ ├── grimm.txt │ ├── her.txt │ ├── holmes.txt │ ├── homer.txt │ ├── koran.txt │ ├── lalaland.txt │ ├── mansfield.txt │ ├── pneumonoultramicroscopicsilicovolcanoconiosis.txt │ ├── revenant.txt │ ├── rinehart.txt │ ├── shakespeare.txt │ ├── stein.txt │ ├── stoker.txt │ ├── surgery.txt │ ├── tolstoy.txt │ ├── wells.txt │ ├── whittier.txt │ ├── wordsworth.txt │ ├── xueqin1.txt │ └── xueqin2.txt │ ├── speller.c │ ├── texts │ ├── aca.txt │ ├── austen.txt │ ├── bible.txt │ ├── birdman.txt │ ├── burnett.txt │ ├── carroll.txt │ ├── cat.txt │ ├── constitution.txt │ ├── federalist.txt │ ├── frankenstein.txt │ ├── grimm.txt │ ├── her.txt │ ├── holmes.txt │ ├── homer.txt │ ├── koran.txt │ ├── lalaland.txt │ ├── mansfield.txt │ ├── pneumonoultramicroscopicsilicovolcanoconiosis.txt │ ├── revenant.txt │ ├── rinehart.txt │ ├── shakespeare.txt │ ├── stein.txt │ ├── stoker.txt │ ├── surgery.txt │ ├── tolstoy.txt │ ├── wells.txt │ ├── whittier.txt │ ├── wordsworth.txt │ ├── xueqin1.txt │ └── xueqin2.txt │ ├── trie.c │ └── trie.h ├── pset6 ├── README.md ├── sentimental │ ├── README.md │ ├── caesar │ │ ├── README.md │ │ └── caesar.py │ ├── cash │ │ ├── README.md │ │ └── cash.py │ ├── crack │ │ ├── README.md │ │ └── crack.py │ ├── credit │ │ ├── README.md │ │ └── credit.py │ ├── hello │ │ ├── README.md │ │ └── hello.py │ ├── mario │ │ ├── less │ │ │ ├── README.md │ │ │ └── mario.py │ │ └── more │ │ │ ├── README.md │ │ │ └── mario.py │ └── vigenere │ │ ├── README.md │ │ └── vigenere.py └── similarities │ ├── less │ ├── README.md │ ├── application.py │ ├── compare │ ├── helpers.py │ ├── requirements.txt │ ├── static │ │ └── styles.css │ └── templates │ │ ├── compare.html │ │ ├── error.html │ │ ├── index.html │ │ └── layout.html │ └── more │ ├── README.md │ ├── application.py │ ├── helpers.py │ ├── requirements.txt │ ├── score │ ├── static │ └── styles.css │ └── templates │ ├── error.html │ ├── index.html │ ├── layout.html │ ├── log.html │ ├── matrix.html │ └── score.html ├── pset7 ├── README.md └── finance │ ├── README.md │ ├── application.py │ ├── finance.db │ ├── helpers.py │ ├── requirements.txt │ ├── static │ └── styles.css │ └── templates │ ├── add_funds.html │ ├── apology.html │ ├── buy.html │ ├── change_password.html │ ├── history.html │ ├── layout.html │ ├── login.html │ ├── portfolio.html │ ├── quote.html │ ├── quoted.html │ ├── register.html │ └── sell.html └── pset8 ├── README.md └── mashup ├── README.md ├── SK.txt ├── US.txt ├── application.py ├── helpers.py ├── mashup.db ├── readme.txt ├── requirements.txt ├── static ├── ajax-loader.gif ├── scripts.js └── styles.css └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/README.md -------------------------------------------------------------------------------- /pset1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/README.md -------------------------------------------------------------------------------- /pset1/cash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/cash/README.md -------------------------------------------------------------------------------- /pset1/cash/cash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/cash/cash.c -------------------------------------------------------------------------------- /pset1/credit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/credit/README.md -------------------------------------------------------------------------------- /pset1/credit/credit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/credit/credit.c -------------------------------------------------------------------------------- /pset1/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/hello/README.md -------------------------------------------------------------------------------- /pset1/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/hello/hello.c -------------------------------------------------------------------------------- /pset1/mario/less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/mario/less/README.md -------------------------------------------------------------------------------- /pset1/mario/less/mario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/mario/less/mario.c -------------------------------------------------------------------------------- /pset1/mario/more/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/mario/more/README.md -------------------------------------------------------------------------------- /pset1/mario/more/mario.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset1/mario/more/mario.c -------------------------------------------------------------------------------- /pset2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset2/README.md -------------------------------------------------------------------------------- /pset2/caesar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset2/caesar/README.md -------------------------------------------------------------------------------- /pset2/caesar/caesar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset2/caesar/caesar.c -------------------------------------------------------------------------------- /pset2/crack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset2/crack/README.md -------------------------------------------------------------------------------- /pset2/crack/crack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset2/crack/crack.c -------------------------------------------------------------------------------- /pset2/vigenere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset2/vigenere/README.md -------------------------------------------------------------------------------- /pset2/vigenere/vigenere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset2/vigenere/vigenere.c -------------------------------------------------------------------------------- /pset3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/README.md -------------------------------------------------------------------------------- /pset3/music/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/Makefile -------------------------------------------------------------------------------- /pset3/music/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/README.md -------------------------------------------------------------------------------- /pset3/music/bday.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/bday.txt -------------------------------------------------------------------------------- /pset3/music/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/helpers.c -------------------------------------------------------------------------------- /pset3/music/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/helpers.h -------------------------------------------------------------------------------- /pset3/music/notes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/notes.c -------------------------------------------------------------------------------- /pset3/music/songs/boat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/songs/boat.txt -------------------------------------------------------------------------------- /pset3/music/songs/jeopardy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/songs/jeopardy.txt -------------------------------------------------------------------------------- /pset3/music/songs/london.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/songs/london.txt -------------------------------------------------------------------------------- /pset3/music/songs/mary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/songs/mary.txt -------------------------------------------------------------------------------- /pset3/music/songs/surprise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/songs/surprise.txt -------------------------------------------------------------------------------- /pset3/music/songs/twinkle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/songs/twinkle.txt -------------------------------------------------------------------------------- /pset3/music/songs/weezer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/songs/weezer.txt -------------------------------------------------------------------------------- /pset3/music/synthesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/synthesize.c -------------------------------------------------------------------------------- /pset3/music/wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/wav.c -------------------------------------------------------------------------------- /pset3/music/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset3/music/wav.h -------------------------------------------------------------------------------- /pset4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/README.md -------------------------------------------------------------------------------- /pset4/recover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/recover/README.md -------------------------------------------------------------------------------- /pset4/recover/card.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/recover/card.raw -------------------------------------------------------------------------------- /pset4/recover/recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/recover/recover.c -------------------------------------------------------------------------------- /pset4/resize/less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/less/README.md -------------------------------------------------------------------------------- /pset4/resize/less/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/less/bmp.h -------------------------------------------------------------------------------- /pset4/resize/less/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/less/copy.c -------------------------------------------------------------------------------- /pset4/resize/less/large.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/less/large.bmp -------------------------------------------------------------------------------- /pset4/resize/less/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/less/resize.c -------------------------------------------------------------------------------- /pset4/resize/less/small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/less/small.bmp -------------------------------------------------------------------------------- /pset4/resize/less/smiley.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/less/smiley.bmp -------------------------------------------------------------------------------- /pset4/resize/more/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/more/README.md -------------------------------------------------------------------------------- /pset4/resize/more/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/more/bmp.h -------------------------------------------------------------------------------- /pset4/resize/more/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/more/copy.c -------------------------------------------------------------------------------- /pset4/resize/more/large.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/more/large.bmp -------------------------------------------------------------------------------- /pset4/resize/more/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/more/resize.c -------------------------------------------------------------------------------- /pset4/resize/more/small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/more/small.bmp -------------------------------------------------------------------------------- /pset4/resize/more/smiley.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/resize/more/smiley.bmp -------------------------------------------------------------------------------- /pset4/whodunit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/whodunit/README.md -------------------------------------------------------------------------------- /pset4/whodunit/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/whodunit/bmp.h -------------------------------------------------------------------------------- /pset4/whodunit/clue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/whodunit/clue.bmp -------------------------------------------------------------------------------- /pset4/whodunit/copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/whodunit/copy.c -------------------------------------------------------------------------------- /pset4/whodunit/large.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/whodunit/large.bmp -------------------------------------------------------------------------------- /pset4/whodunit/small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/whodunit/small.bmp -------------------------------------------------------------------------------- /pset4/whodunit/smiley.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset4/whodunit/smiley.bmp -------------------------------------------------------------------------------- /pset5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/README.md -------------------------------------------------------------------------------- /pset5/speller/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/README.md -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/Makefile -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/README.md -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/bloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/bloom.c -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/bloom.h -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/dictionaries/large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/dictionaries/large -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/dictionaries/small: -------------------------------------------------------------------------------- 1 | cat 2 | caterpillar 3 | -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/dictionary.c -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/dictionary.h -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/djb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/djb2.c -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/djb2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/djb2.h -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/jenkins.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/jenkins.c -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/jenkins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/jenkins.h -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/aca.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/austen.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/bible.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/birdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/birdman.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/burnett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/burnett.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/carroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/carroll.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/cat.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/constitution.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/federalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/federalist.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/frankenstein.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/grimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/grimm.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/her.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/her.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/holmes.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/homer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/homer.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/koran.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/koran.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/lalaland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/lalaland.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/mansfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/mansfield.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/pneumonoultramicroscopicsilicovolcanoconiosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/pneumonoultramicroscopicsilicovolcanoconiosis.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/revenant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/revenant.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/rinehart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/rinehart.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/shakespeare.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/stein.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/stoker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/stoker.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/surgery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/surgery.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/tolstoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/tolstoy.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/wells.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/whittier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/whittier.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/wordsworth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/wordsworth.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/xueqin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/xueqin1.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/keys/xueqin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/keys/xueqin2.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/speller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/speller -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/speller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/speller.c -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/aca.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/austen.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/bible.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/birdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/birdman.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/burnett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/burnett.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/carroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/carroll.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/cat.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/constitution.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/federalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/federalist.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/frankenstein.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/grimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/grimm.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/her.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/her.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/holmes.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/homer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/homer.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/koran.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/koran.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/lalaland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/lalaland.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/mansfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/mansfield.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/revenant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/revenant.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/rinehart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/rinehart.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/shakespeare.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/stein.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/stoker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/stoker.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/surgery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/surgery.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/tolstoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/tolstoy.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/wells.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/whittier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/whittier.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/wordsworth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/wordsworth.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/xueqin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/xueqin1.txt -------------------------------------------------------------------------------- /pset5/speller/bloom_filter/texts/xueqin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/bloom_filter/texts/xueqin2.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/Makefile -------------------------------------------------------------------------------- /pset5/speller/hashtable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/README.md -------------------------------------------------------------------------------- /pset5/speller/hashtable/dictionaries/large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/dictionaries/large -------------------------------------------------------------------------------- /pset5/speller/hashtable/dictionaries/small: -------------------------------------------------------------------------------- 1 | cat 2 | caterpillar 3 | -------------------------------------------------------------------------------- /pset5/speller/hashtable/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/dictionary.c -------------------------------------------------------------------------------- /pset5/speller/hashtable/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/dictionary.h -------------------------------------------------------------------------------- /pset5/speller/hashtable/djb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/djb2.c -------------------------------------------------------------------------------- /pset5/speller/hashtable/djb2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/djb2.h -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/aca.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/austen.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/bible.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/birdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/birdman.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/burnett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/burnett.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/carroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/carroll.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/cat.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/constitution.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/federalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/federalist.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/frankenstein.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/grimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/grimm.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/her.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/her.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/holmes.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/homer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/homer.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/koran.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/koran.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/lalaland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/lalaland.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/mansfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/mansfield.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/pneumonoultramicroscopicsilicovolcanoconiosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/pneumonoultramicroscopicsilicovolcanoconiosis.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/revenant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/revenant.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/rinehart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/rinehart.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/shakespeare.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/stein.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/stoker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/stoker.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/surgery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/surgery.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/tolstoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/tolstoy.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/wells.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/whittier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/whittier.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/wordsworth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/wordsworth.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/xueqin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/xueqin1.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/keys/xueqin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/keys/xueqin2.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/speller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/speller.c -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/aca.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/austen.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/bible.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/birdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/birdman.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/burnett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/burnett.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/carroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/carroll.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/cat.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/constitution.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/federalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/federalist.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/frankenstein.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/grimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/grimm.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/her.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/her.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/holmes.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/homer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/homer.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/koran.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/koran.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/lalaland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/lalaland.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/mansfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/mansfield.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/revenant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/revenant.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/rinehart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/rinehart.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/shakespeare.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/stein.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/stoker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/stoker.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/surgery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/surgery.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/tolstoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/tolstoy.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/wells.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/whittier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/whittier.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/wordsworth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/wordsworth.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/xueqin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/xueqin1.txt -------------------------------------------------------------------------------- /pset5/speller/hashtable/texts/xueqin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/hashtable/texts/xueqin2.txt -------------------------------------------------------------------------------- /pset5/speller/trie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/Makefile -------------------------------------------------------------------------------- /pset5/speller/trie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/README.md -------------------------------------------------------------------------------- /pset5/speller/trie/dictionaries/large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/dictionaries/large -------------------------------------------------------------------------------- /pset5/speller/trie/dictionaries/small: -------------------------------------------------------------------------------- 1 | cat 2 | caterpillar 3 | -------------------------------------------------------------------------------- /pset5/speller/trie/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/dictionary.c -------------------------------------------------------------------------------- /pset5/speller/trie/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/dictionary.h -------------------------------------------------------------------------------- /pset5/speller/trie/keys/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/aca.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/austen.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/bible.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/birdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/birdman.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/burnett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/burnett.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/carroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/carroll.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/cat.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/constitution.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/federalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/federalist.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/frankenstein.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/grimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/grimm.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/her.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/her.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/holmes.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/homer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/homer.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/koran.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/koran.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/lalaland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/lalaland.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/mansfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/mansfield.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/pneumonoultramicroscopicsilicovolcanoconiosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/pneumonoultramicroscopicsilicovolcanoconiosis.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/revenant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/revenant.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/rinehart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/rinehart.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/shakespeare.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/stein.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/stoker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/stoker.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/surgery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/surgery.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/tolstoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/tolstoy.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/wells.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/whittier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/whittier.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/wordsworth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/wordsworth.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/xueqin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/xueqin1.txt -------------------------------------------------------------------------------- /pset5/speller/trie/keys/xueqin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/keys/xueqin2.txt -------------------------------------------------------------------------------- /pset5/speller/trie/speller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/speller.c -------------------------------------------------------------------------------- /pset5/speller/trie/texts/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/aca.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/austen.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/bible.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/bible.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/birdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/birdman.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/burnett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/burnett.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/carroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/carroll.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/cat.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/constitution.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/federalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/federalist.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/frankenstein.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/grimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/grimm.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/her.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/her.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/holmes.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/homer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/homer.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/koran.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/koran.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/lalaland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/lalaland.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/mansfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/mansfield.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/revenant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/revenant.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/rinehart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/rinehart.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/shakespeare.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/stein.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/stoker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/stoker.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/surgery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/surgery.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/tolstoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/tolstoy.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/wells.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/whittier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/whittier.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/wordsworth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/wordsworth.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/xueqin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/xueqin1.txt -------------------------------------------------------------------------------- /pset5/speller/trie/texts/xueqin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/texts/xueqin2.txt -------------------------------------------------------------------------------- /pset5/speller/trie/trie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/trie.c -------------------------------------------------------------------------------- /pset5/speller/trie/trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset5/speller/trie/trie.h -------------------------------------------------------------------------------- /pset6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/README.md -------------------------------------------------------------------------------- /pset6/sentimental/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/README.md -------------------------------------------------------------------------------- /pset6/sentimental/caesar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/caesar/README.md -------------------------------------------------------------------------------- /pset6/sentimental/caesar/caesar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/caesar/caesar.py -------------------------------------------------------------------------------- /pset6/sentimental/cash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/cash/README.md -------------------------------------------------------------------------------- /pset6/sentimental/cash/cash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/cash/cash.py -------------------------------------------------------------------------------- /pset6/sentimental/crack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/crack/README.md -------------------------------------------------------------------------------- /pset6/sentimental/crack/crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/crack/crack.py -------------------------------------------------------------------------------- /pset6/sentimental/credit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/credit/README.md -------------------------------------------------------------------------------- /pset6/sentimental/credit/credit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/credit/credit.py -------------------------------------------------------------------------------- /pset6/sentimental/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/hello/README.md -------------------------------------------------------------------------------- /pset6/sentimental/hello/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/hello/hello.py -------------------------------------------------------------------------------- /pset6/sentimental/mario/less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/mario/less/README.md -------------------------------------------------------------------------------- /pset6/sentimental/mario/less/mario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/mario/less/mario.py -------------------------------------------------------------------------------- /pset6/sentimental/mario/more/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/mario/more/README.md -------------------------------------------------------------------------------- /pset6/sentimental/mario/more/mario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/mario/more/mario.py -------------------------------------------------------------------------------- /pset6/sentimental/vigenere/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/vigenere/README.md -------------------------------------------------------------------------------- /pset6/sentimental/vigenere/vigenere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/sentimental/vigenere/vigenere.py -------------------------------------------------------------------------------- /pset6/similarities/less/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/README.md -------------------------------------------------------------------------------- /pset6/similarities/less/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/application.py -------------------------------------------------------------------------------- /pset6/similarities/less/compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/compare -------------------------------------------------------------------------------- /pset6/similarities/less/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/helpers.py -------------------------------------------------------------------------------- /pset6/similarities/less/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | nltk 3 | -------------------------------------------------------------------------------- /pset6/similarities/less/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/static/styles.css -------------------------------------------------------------------------------- /pset6/similarities/less/templates/compare.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/templates/compare.html -------------------------------------------------------------------------------- /pset6/similarities/less/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/templates/error.html -------------------------------------------------------------------------------- /pset6/similarities/less/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/templates/index.html -------------------------------------------------------------------------------- /pset6/similarities/less/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/less/templates/layout.html -------------------------------------------------------------------------------- /pset6/similarities/more/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/README.md -------------------------------------------------------------------------------- /pset6/similarities/more/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/application.py -------------------------------------------------------------------------------- /pset6/similarities/more/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/helpers.py -------------------------------------------------------------------------------- /pset6/similarities/more/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | nltk 3 | -------------------------------------------------------------------------------- /pset6/similarities/more/score: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/score -------------------------------------------------------------------------------- /pset6/similarities/more/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/static/styles.css -------------------------------------------------------------------------------- /pset6/similarities/more/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/templates/error.html -------------------------------------------------------------------------------- /pset6/similarities/more/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/templates/index.html -------------------------------------------------------------------------------- /pset6/similarities/more/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/templates/layout.html -------------------------------------------------------------------------------- /pset6/similarities/more/templates/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/templates/log.html -------------------------------------------------------------------------------- /pset6/similarities/more/templates/matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/templates/matrix.html -------------------------------------------------------------------------------- /pset6/similarities/more/templates/score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset6/similarities/more/templates/score.html -------------------------------------------------------------------------------- /pset7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/README.md -------------------------------------------------------------------------------- /pset7/finance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/README.md -------------------------------------------------------------------------------- /pset7/finance/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/application.py -------------------------------------------------------------------------------- /pset7/finance/finance.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/finance.db -------------------------------------------------------------------------------- /pset7/finance/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/helpers.py -------------------------------------------------------------------------------- /pset7/finance/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/requirements.txt -------------------------------------------------------------------------------- /pset7/finance/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/static/styles.css -------------------------------------------------------------------------------- /pset7/finance/templates/add_funds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/add_funds.html -------------------------------------------------------------------------------- /pset7/finance/templates/apology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/apology.html -------------------------------------------------------------------------------- /pset7/finance/templates/buy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/buy.html -------------------------------------------------------------------------------- /pset7/finance/templates/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/change_password.html -------------------------------------------------------------------------------- /pset7/finance/templates/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/history.html -------------------------------------------------------------------------------- /pset7/finance/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/layout.html -------------------------------------------------------------------------------- /pset7/finance/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/login.html -------------------------------------------------------------------------------- /pset7/finance/templates/portfolio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/portfolio.html -------------------------------------------------------------------------------- /pset7/finance/templates/quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/quote.html -------------------------------------------------------------------------------- /pset7/finance/templates/quoted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/quoted.html -------------------------------------------------------------------------------- /pset7/finance/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/register.html -------------------------------------------------------------------------------- /pset7/finance/templates/sell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset7/finance/templates/sell.html -------------------------------------------------------------------------------- /pset8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/README.md -------------------------------------------------------------------------------- /pset8/mashup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/README.md -------------------------------------------------------------------------------- /pset8/mashup/SK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/SK.txt -------------------------------------------------------------------------------- /pset8/mashup/US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/US.txt -------------------------------------------------------------------------------- /pset8/mashup/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/application.py -------------------------------------------------------------------------------- /pset8/mashup/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/helpers.py -------------------------------------------------------------------------------- /pset8/mashup/mashup.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/mashup.db -------------------------------------------------------------------------------- /pset8/mashup/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/readme.txt -------------------------------------------------------------------------------- /pset8/mashup/requirements.txt: -------------------------------------------------------------------------------- 1 | cs50 2 | feedparser 3 | Flask 4 | -------------------------------------------------------------------------------- /pset8/mashup/static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/static/ajax-loader.gif -------------------------------------------------------------------------------- /pset8/mashup/static/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/static/scripts.js -------------------------------------------------------------------------------- /pset8/mashup/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/static/styles.css -------------------------------------------------------------------------------- /pset8/mashup/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mareksuscak/cs50/HEAD/pset8/mashup/templates/index.html --------------------------------------------------------------------------------