├── .gitignore ├── birthdays ├── .cs50.yml └── __init__.py ├── bulbs ├── .cs50.yml └── __init__.py ├── caesar ├── .cs50.yml └── __init__.py ├── cash ├── .cs50.yml ├── __init__.py └── testing.c ├── challenges └── speller │ ├── .cs50.yml │ ├── Makefile │ ├── __init__.py │ ├── dictionaries │ ├── large │ └── small │ ├── dictionary.h │ ├── sols │ └── aca.txt │ ├── speller.c │ └── texts │ ├── aca.txt │ ├── austen.txt │ ├── birdman.txt │ ├── burnett.txt │ ├── carroll.txt │ ├── cat.txt │ ├── constitution.txt │ ├── federalist.txt │ ├── frankenstein.txt │ ├── grimm.txt │ ├── her.txt │ ├── holmes.txt │ ├── homer.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 ├── credit ├── .cs50.yml └── __init__.py ├── dna ├── .cs50.yml ├── .gitignore ├── __init__.py ├── databases │ ├── large.csv │ └── small.csv ├── generate_dynamic_test.py └── sequences │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 2.txt │ ├── 20.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt ├── fiftyville ├── .cs50.yml └── __init__.py ├── filter ├── less │ ├── .cs50.yml │ ├── Makefile │ ├── __init__.py │ ├── bmp.h │ ├── helpers.h │ └── testing.c └── more │ ├── .cs50.yml │ ├── Makefile │ ├── __init__.py │ ├── bmp.h │ ├── helpers.h │ └── testing.c ├── finance ├── .cs50.yml ├── __init__.py └── lookup.py ├── hello └── __init__.py ├── homepage ├── .cs50.yml └── __init__.py ├── houses ├── .cs50.yml ├── __init__.py ├── gryffindor.txt ├── gryffindor_re.txt ├── hufflepuff.txt ├── hufflepuff_re.txt ├── setup.sql ├── students.csv └── students.db ├── inheritance ├── .cs50.yml ├── README.md ├── __init__.py ├── inheritance.c └── testing.c ├── mario ├── less │ ├── .cs50.yml │ ├── 1.txt │ ├── 12.txt │ ├── 2.txt │ ├── 8.txt │ └── __init__.py └── more │ ├── .cs50.yml │ ├── 1.txt │ ├── 12.txt │ ├── 2.txt │ ├── 8.txt │ └── __init__.py ├── me ├── .cs50.yml └── __init__.py ├── movies ├── .cs50.yml ├── __init__.py ├── movies.db └── setup.sql ├── plurality ├── .cs50.yml ├── __init__.py └── testing.c ├── project ├── .cs50.yml ├── __init__.py ├── implementation │ └── .cs50.yml ├── preproposal │ └── .cs50.yml ├── proposal │ └── .cs50.yml └── status │ └── .cs50.yml ├── readability ├── .cs50.yml └── __init__.py ├── recover ├── .cs50.yml ├── __init__.py └── card.raw ├── reverse ├── .cs50.yml ├── __init__.py ├── input.wav └── wav.h ├── runoff ├── .cs50.yml ├── __init__.py └── testing.c ├── scrabble ├── .cs50.yml ├── README.md ├── __init__.py └── scrabble.c ├── scratch ├── .cs50.yml └── __init__.py ├── sentimental ├── cash │ ├── .cs50.yml │ └── __init__.py ├── credit │ ├── .cs50.yml │ └── __init__.py ├── hello │ ├── .cs50.yml │ └── __init__.py ├── mario │ ├── less │ │ ├── .cs50.yml │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 8.txt │ │ └── __init__.py │ └── more │ │ ├── .cs50.yml │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 8.txt │ │ └── __init__.py └── readability │ ├── .cs50.yml │ └── __init__.py ├── songs ├── .cs50.yml ├── __init__.py ├── setup.sql └── songs.db ├── sort ├── .cs50.yml ├── README.md ├── __init__.py ├── answers.txt ├── random10000.txt ├── random5000.txt ├── random50000.txt ├── reversed10000.txt ├── reversed5000.txt ├── reversed50000.txt ├── sort1 ├── sort2 ├── sort3 ├── sorted10000.txt ├── sorted5000.txt └── sorted50000.txt ├── speller ├── .cs50.yml ├── Makefile ├── __init__.py ├── apostrophe │ ├── outs │ │ ├── with-with │ │ ├── with-without │ │ └── without-with │ ├── with │ │ ├── dict │ │ └── text │ └── without │ │ ├── dict │ │ └── text ├── basic │ ├── dict │ ├── out │ └── text ├── case │ ├── dict │ ├── out │ └── text ├── dictionary.h ├── large │ ├── dict │ ├── out │ └── text ├── max_length │ ├── dict │ ├── out │ └── text ├── min_length │ ├── dict │ ├── out │ └── text ├── speller.c └── substring │ ├── dict │ ├── out │ └── text ├── substitution ├── .cs50.yml └── __init__.py ├── tasks ├── .cs50.yml ├── __init__.py ├── monday.txt └── testing.py ├── tideman ├── .cs50.yml ├── __init__.py └── testing.c ├── trivia ├── .cs50.yml └── __init__.py ├── volume ├── .cs50.yml ├── README.md ├── __init__.py ├── input.wav └── volume.c ├── wordle ├── .cs50.yml ├── 5.txt ├── __init__.py └── testing.c ├── world ├── .cs50.yml └── __init__.py └── worldcup ├── .cs50.yml ├── 2018m.csv ├── 2019w.csv ├── README.md ├── __init__.py └── tournament.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/.gitignore -------------------------------------------------------------------------------- /birthdays/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/birthdays/.cs50.yml -------------------------------------------------------------------------------- /birthdays/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/birthdays/__init__.py -------------------------------------------------------------------------------- /bulbs/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/bulbs/.cs50.yml -------------------------------------------------------------------------------- /bulbs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/bulbs/__init__.py -------------------------------------------------------------------------------- /caesar/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/caesar/.cs50.yml -------------------------------------------------------------------------------- /caesar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/caesar/__init__.py -------------------------------------------------------------------------------- /cash/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/cash/.cs50.yml -------------------------------------------------------------------------------- /cash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/cash/__init__.py -------------------------------------------------------------------------------- /cash/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/cash/testing.c -------------------------------------------------------------------------------- /challenges/speller/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/.cs50.yml -------------------------------------------------------------------------------- /challenges/speller/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/Makefile -------------------------------------------------------------------------------- /challenges/speller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/__init__.py -------------------------------------------------------------------------------- /challenges/speller/dictionaries/large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/dictionaries/large -------------------------------------------------------------------------------- /challenges/speller/dictionaries/small: -------------------------------------------------------------------------------- 1 | cat 2 | caterpillar 3 | -------------------------------------------------------------------------------- /challenges/speller/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/dictionary.h -------------------------------------------------------------------------------- /challenges/speller/sols/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/sols/aca.txt -------------------------------------------------------------------------------- /challenges/speller/speller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/speller.c -------------------------------------------------------------------------------- /challenges/speller/texts/aca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/aca.txt -------------------------------------------------------------------------------- /challenges/speller/texts/austen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/austen.txt -------------------------------------------------------------------------------- /challenges/speller/texts/birdman.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/birdman.txt -------------------------------------------------------------------------------- /challenges/speller/texts/burnett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/burnett.txt -------------------------------------------------------------------------------- /challenges/speller/texts/carroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/carroll.txt -------------------------------------------------------------------------------- /challenges/speller/texts/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/cat.txt -------------------------------------------------------------------------------- /challenges/speller/texts/constitution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/constitution.txt -------------------------------------------------------------------------------- /challenges/speller/texts/federalist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/federalist.txt -------------------------------------------------------------------------------- /challenges/speller/texts/frankenstein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/frankenstein.txt -------------------------------------------------------------------------------- /challenges/speller/texts/grimm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/grimm.txt -------------------------------------------------------------------------------- /challenges/speller/texts/her.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/her.txt -------------------------------------------------------------------------------- /challenges/speller/texts/holmes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/holmes.txt -------------------------------------------------------------------------------- /challenges/speller/texts/homer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/homer.txt -------------------------------------------------------------------------------- /challenges/speller/texts/lalaland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/lalaland.txt -------------------------------------------------------------------------------- /challenges/speller/texts/mansfield.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/mansfield.txt -------------------------------------------------------------------------------- /challenges/speller/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt -------------------------------------------------------------------------------- /challenges/speller/texts/revenant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/revenant.txt -------------------------------------------------------------------------------- /challenges/speller/texts/rinehart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/rinehart.txt -------------------------------------------------------------------------------- /challenges/speller/texts/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/shakespeare.txt -------------------------------------------------------------------------------- /challenges/speller/texts/stein.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/stein.txt -------------------------------------------------------------------------------- /challenges/speller/texts/stoker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/stoker.txt -------------------------------------------------------------------------------- /challenges/speller/texts/surgery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/surgery.txt -------------------------------------------------------------------------------- /challenges/speller/texts/tolstoy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/tolstoy.txt -------------------------------------------------------------------------------- /challenges/speller/texts/wells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/wells.txt -------------------------------------------------------------------------------- /challenges/speller/texts/whittier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/whittier.txt -------------------------------------------------------------------------------- /challenges/speller/texts/wordsworth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/wordsworth.txt -------------------------------------------------------------------------------- /challenges/speller/texts/xueqin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/xueqin1.txt -------------------------------------------------------------------------------- /challenges/speller/texts/xueqin2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/challenges/speller/texts/xueqin2.txt -------------------------------------------------------------------------------- /credit/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/credit/.cs50.yml -------------------------------------------------------------------------------- /credit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/credit/__init__.py -------------------------------------------------------------------------------- /dna/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/.cs50.yml -------------------------------------------------------------------------------- /dna/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/.gitignore -------------------------------------------------------------------------------- /dna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/__init__.py -------------------------------------------------------------------------------- /dna/databases/large.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/databases/large.csv -------------------------------------------------------------------------------- /dna/databases/small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/databases/small.csv -------------------------------------------------------------------------------- /dna/generate_dynamic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/generate_dynamic_test.py -------------------------------------------------------------------------------- /dna/sequences/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/1.txt -------------------------------------------------------------------------------- /dna/sequences/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/10.txt -------------------------------------------------------------------------------- /dna/sequences/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/11.txt -------------------------------------------------------------------------------- /dna/sequences/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/12.txt -------------------------------------------------------------------------------- /dna/sequences/13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/13.txt -------------------------------------------------------------------------------- /dna/sequences/14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/14.txt -------------------------------------------------------------------------------- /dna/sequences/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/15.txt -------------------------------------------------------------------------------- /dna/sequences/16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/16.txt -------------------------------------------------------------------------------- /dna/sequences/17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/17.txt -------------------------------------------------------------------------------- /dna/sequences/18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/18.txt -------------------------------------------------------------------------------- /dna/sequences/19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/19.txt -------------------------------------------------------------------------------- /dna/sequences/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/2.txt -------------------------------------------------------------------------------- /dna/sequences/20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/20.txt -------------------------------------------------------------------------------- /dna/sequences/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/3.txt -------------------------------------------------------------------------------- /dna/sequences/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/4.txt -------------------------------------------------------------------------------- /dna/sequences/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/5.txt -------------------------------------------------------------------------------- /dna/sequences/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/6.txt -------------------------------------------------------------------------------- /dna/sequences/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/7.txt -------------------------------------------------------------------------------- /dna/sequences/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/8.txt -------------------------------------------------------------------------------- /dna/sequences/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/dna/sequences/9.txt -------------------------------------------------------------------------------- /fiftyville/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/fiftyville/.cs50.yml -------------------------------------------------------------------------------- /fiftyville/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/fiftyville/__init__.py -------------------------------------------------------------------------------- /filter/less/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/less/.cs50.yml -------------------------------------------------------------------------------- /filter/less/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/less/Makefile -------------------------------------------------------------------------------- /filter/less/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/less/__init__.py -------------------------------------------------------------------------------- /filter/less/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/less/bmp.h -------------------------------------------------------------------------------- /filter/less/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/less/helpers.h -------------------------------------------------------------------------------- /filter/less/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/less/testing.c -------------------------------------------------------------------------------- /filter/more/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/more/.cs50.yml -------------------------------------------------------------------------------- /filter/more/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/more/Makefile -------------------------------------------------------------------------------- /filter/more/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/more/__init__.py -------------------------------------------------------------------------------- /filter/more/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/more/bmp.h -------------------------------------------------------------------------------- /filter/more/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/more/helpers.h -------------------------------------------------------------------------------- /filter/more/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/filter/more/testing.c -------------------------------------------------------------------------------- /finance/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/finance/.cs50.yml -------------------------------------------------------------------------------- /finance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/finance/__init__.py -------------------------------------------------------------------------------- /finance/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/finance/lookup.py -------------------------------------------------------------------------------- /hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/hello/__init__.py -------------------------------------------------------------------------------- /homepage/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/homepage/.cs50.yml -------------------------------------------------------------------------------- /homepage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/homepage/__init__.py -------------------------------------------------------------------------------- /houses/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/.cs50.yml -------------------------------------------------------------------------------- /houses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/__init__.py -------------------------------------------------------------------------------- /houses/gryffindor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/gryffindor.txt -------------------------------------------------------------------------------- /houses/gryffindor_re.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/gryffindor_re.txt -------------------------------------------------------------------------------- /houses/hufflepuff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/hufflepuff.txt -------------------------------------------------------------------------------- /houses/hufflepuff_re.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/hufflepuff_re.txt -------------------------------------------------------------------------------- /houses/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/setup.sql -------------------------------------------------------------------------------- /houses/students.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/students.csv -------------------------------------------------------------------------------- /houses/students.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/houses/students.db -------------------------------------------------------------------------------- /inheritance/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/inheritance/.cs50.yml -------------------------------------------------------------------------------- /inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/inheritance/README.md -------------------------------------------------------------------------------- /inheritance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/inheritance/__init__.py -------------------------------------------------------------------------------- /inheritance/inheritance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/inheritance/inheritance.c -------------------------------------------------------------------------------- /inheritance/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/inheritance/testing.c -------------------------------------------------------------------------------- /mario/less/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/less/.cs50.yml -------------------------------------------------------------------------------- /mario/less/1.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /mario/less/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/less/12.txt -------------------------------------------------------------------------------- /mario/less/2.txt: -------------------------------------------------------------------------------- 1 | # 2 | ## 3 | -------------------------------------------------------------------------------- /mario/less/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/less/8.txt -------------------------------------------------------------------------------- /mario/less/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/less/__init__.py -------------------------------------------------------------------------------- /mario/more/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/more/.cs50.yml -------------------------------------------------------------------------------- /mario/more/1.txt: -------------------------------------------------------------------------------- 1 | # # 2 | -------------------------------------------------------------------------------- /mario/more/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/more/12.txt -------------------------------------------------------------------------------- /mario/more/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/more/2.txt -------------------------------------------------------------------------------- /mario/more/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/more/8.txt -------------------------------------------------------------------------------- /mario/more/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/mario/more/__init__.py -------------------------------------------------------------------------------- /me/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/me/.cs50.yml -------------------------------------------------------------------------------- /me/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/me/__init__.py -------------------------------------------------------------------------------- /movies/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/movies/.cs50.yml -------------------------------------------------------------------------------- /movies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/movies/__init__.py -------------------------------------------------------------------------------- /movies/movies.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/movies/movies.db -------------------------------------------------------------------------------- /movies/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/movies/setup.sql -------------------------------------------------------------------------------- /plurality/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/plurality/.cs50.yml -------------------------------------------------------------------------------- /plurality/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/plurality/__init__.py -------------------------------------------------------------------------------- /plurality/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/plurality/testing.c -------------------------------------------------------------------------------- /project/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/project/.cs50.yml -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/project/__init__.py -------------------------------------------------------------------------------- /project/implementation/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/project/implementation/.cs50.yml -------------------------------------------------------------------------------- /project/preproposal/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/project/preproposal/.cs50.yml -------------------------------------------------------------------------------- /project/proposal/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/project/proposal/.cs50.yml -------------------------------------------------------------------------------- /project/status/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/project/status/.cs50.yml -------------------------------------------------------------------------------- /readability/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/readability/.cs50.yml -------------------------------------------------------------------------------- /readability/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/readability/__init__.py -------------------------------------------------------------------------------- /recover/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/recover/.cs50.yml -------------------------------------------------------------------------------- /recover/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/recover/__init__.py -------------------------------------------------------------------------------- /recover/card.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/recover/card.raw -------------------------------------------------------------------------------- /reverse/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/reverse/.cs50.yml -------------------------------------------------------------------------------- /reverse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/reverse/__init__.py -------------------------------------------------------------------------------- /reverse/input.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/reverse/input.wav -------------------------------------------------------------------------------- /reverse/wav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/reverse/wav.h -------------------------------------------------------------------------------- /runoff/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/runoff/.cs50.yml -------------------------------------------------------------------------------- /runoff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/runoff/__init__.py -------------------------------------------------------------------------------- /runoff/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/runoff/testing.c -------------------------------------------------------------------------------- /scrabble/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/scrabble/.cs50.yml -------------------------------------------------------------------------------- /scrabble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/scrabble/README.md -------------------------------------------------------------------------------- /scrabble/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/scrabble/__init__.py -------------------------------------------------------------------------------- /scrabble/scrabble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/scrabble/scrabble.c -------------------------------------------------------------------------------- /scratch/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/scratch/.cs50.yml -------------------------------------------------------------------------------- /scratch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/scratch/__init__.py -------------------------------------------------------------------------------- /sentimental/cash/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/cash/.cs50.yml -------------------------------------------------------------------------------- /sentimental/cash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/cash/__init__.py -------------------------------------------------------------------------------- /sentimental/credit/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/credit/.cs50.yml -------------------------------------------------------------------------------- /sentimental/credit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/credit/__init__.py -------------------------------------------------------------------------------- /sentimental/hello/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/hello/.cs50.yml -------------------------------------------------------------------------------- /sentimental/hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/hello/__init__.py -------------------------------------------------------------------------------- /sentimental/mario/less/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/mario/less/.cs50.yml -------------------------------------------------------------------------------- /sentimental/mario/less/1.txt: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /sentimental/mario/less/2.txt: -------------------------------------------------------------------------------- 1 | # 2 | ## 3 | -------------------------------------------------------------------------------- /sentimental/mario/less/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/mario/less/8.txt -------------------------------------------------------------------------------- /sentimental/mario/less/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/mario/less/__init__.py -------------------------------------------------------------------------------- /sentimental/mario/more/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/mario/more/.cs50.yml -------------------------------------------------------------------------------- /sentimental/mario/more/1.txt: -------------------------------------------------------------------------------- 1 | # # 2 | -------------------------------------------------------------------------------- /sentimental/mario/more/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/mario/more/2.txt -------------------------------------------------------------------------------- /sentimental/mario/more/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/mario/more/8.txt -------------------------------------------------------------------------------- /sentimental/mario/more/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/mario/more/__init__.py -------------------------------------------------------------------------------- /sentimental/readability/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/readability/.cs50.yml -------------------------------------------------------------------------------- /sentimental/readability/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sentimental/readability/__init__.py -------------------------------------------------------------------------------- /songs/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/songs/.cs50.yml -------------------------------------------------------------------------------- /songs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/songs/__init__.py -------------------------------------------------------------------------------- /songs/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/songs/setup.sql -------------------------------------------------------------------------------- /songs/songs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/songs/songs.db -------------------------------------------------------------------------------- /sort/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/.cs50.yml -------------------------------------------------------------------------------- /sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/README.md -------------------------------------------------------------------------------- /sort/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/__init__.py -------------------------------------------------------------------------------- /sort/answers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/answers.txt -------------------------------------------------------------------------------- /sort/random10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/random10000.txt -------------------------------------------------------------------------------- /sort/random5000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/random5000.txt -------------------------------------------------------------------------------- /sort/random50000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/random50000.txt -------------------------------------------------------------------------------- /sort/reversed10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/reversed10000.txt -------------------------------------------------------------------------------- /sort/reversed5000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/reversed5000.txt -------------------------------------------------------------------------------- /sort/reversed50000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/reversed50000.txt -------------------------------------------------------------------------------- /sort/sort1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/sort1 -------------------------------------------------------------------------------- /sort/sort2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/sort2 -------------------------------------------------------------------------------- /sort/sort3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/sort3 -------------------------------------------------------------------------------- /sort/sorted10000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/sorted10000.txt -------------------------------------------------------------------------------- /sort/sorted5000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/sorted5000.txt -------------------------------------------------------------------------------- /sort/sorted50000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/sort/sorted50000.txt -------------------------------------------------------------------------------- /speller/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/.cs50.yml -------------------------------------------------------------------------------- /speller/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/Makefile -------------------------------------------------------------------------------- /speller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/__init__.py -------------------------------------------------------------------------------- /speller/apostrophe/outs/with-with: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/apostrophe/outs/with-with -------------------------------------------------------------------------------- /speller/apostrophe/outs/with-without: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/apostrophe/outs/with-without -------------------------------------------------------------------------------- /speller/apostrophe/outs/without-with: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/apostrophe/outs/without-with -------------------------------------------------------------------------------- /speller/apostrophe/with/dict: -------------------------------------------------------------------------------- 1 | foo's 2 | -------------------------------------------------------------------------------- /speller/apostrophe/with/text: -------------------------------------------------------------------------------- 1 | foo's 2 | -------------------------------------------------------------------------------- /speller/apostrophe/without/dict: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /speller/apostrophe/without/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/apostrophe/without/text -------------------------------------------------------------------------------- /speller/basic/dict: -------------------------------------------------------------------------------- 1 | brown 2 | dog 3 | fox 4 | jumps 5 | lazy 6 | over 7 | quick 8 | the 9 | -------------------------------------------------------------------------------- /speller/basic/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/basic/out -------------------------------------------------------------------------------- /speller/basic/text: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /speller/case/dict: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /speller/case/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/case/out -------------------------------------------------------------------------------- /speller/case/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/case/text -------------------------------------------------------------------------------- /speller/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/dictionary.h -------------------------------------------------------------------------------- /speller/large/dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/large/dict -------------------------------------------------------------------------------- /speller/large/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/large/out -------------------------------------------------------------------------------- /speller/large/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/large/text -------------------------------------------------------------------------------- /speller/max_length/dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/max_length/dict -------------------------------------------------------------------------------- /speller/max_length/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/max_length/out -------------------------------------------------------------------------------- /speller/max_length/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/max_length/text -------------------------------------------------------------------------------- /speller/min_length/dict: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /speller/min_length/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/min_length/out -------------------------------------------------------------------------------- /speller/min_length/text: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /speller/speller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/speller.c -------------------------------------------------------------------------------- /speller/substring/dict: -------------------------------------------------------------------------------- 1 | cat 2 | caterpillar 3 | -------------------------------------------------------------------------------- /speller/substring/out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/substring/out -------------------------------------------------------------------------------- /speller/substring/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/speller/substring/text -------------------------------------------------------------------------------- /substitution/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/substitution/.cs50.yml -------------------------------------------------------------------------------- /substitution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/substitution/__init__.py -------------------------------------------------------------------------------- /tasks/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/tasks/.cs50.yml -------------------------------------------------------------------------------- /tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/tasks/__init__.py -------------------------------------------------------------------------------- /tasks/monday.txt: -------------------------------------------------------------------------------- 1 | Attend Lecture 2 | Rip a Phonebook -------------------------------------------------------------------------------- /tasks/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/tasks/testing.py -------------------------------------------------------------------------------- /tideman/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/tideman/.cs50.yml -------------------------------------------------------------------------------- /tideman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/tideman/__init__.py -------------------------------------------------------------------------------- /tideman/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/tideman/testing.c -------------------------------------------------------------------------------- /trivia/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/trivia/.cs50.yml -------------------------------------------------------------------------------- /trivia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/trivia/__init__.py -------------------------------------------------------------------------------- /volume/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/volume/.cs50.yml -------------------------------------------------------------------------------- /volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/volume/README.md -------------------------------------------------------------------------------- /volume/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/volume/__init__.py -------------------------------------------------------------------------------- /volume/input.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/volume/input.wav -------------------------------------------------------------------------------- /volume/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/volume/volume.c -------------------------------------------------------------------------------- /wordle/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/wordle/.cs50.yml -------------------------------------------------------------------------------- /wordle/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/wordle/5.txt -------------------------------------------------------------------------------- /wordle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/wordle/__init__.py -------------------------------------------------------------------------------- /wordle/testing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/wordle/testing.c -------------------------------------------------------------------------------- /world/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/world/.cs50.yml -------------------------------------------------------------------------------- /world/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/world/__init__.py -------------------------------------------------------------------------------- /worldcup/.cs50.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/worldcup/.cs50.yml -------------------------------------------------------------------------------- /worldcup/2018m.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/worldcup/2018m.csv -------------------------------------------------------------------------------- /worldcup/2019w.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/worldcup/2019w.csv -------------------------------------------------------------------------------- /worldcup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/worldcup/README.md -------------------------------------------------------------------------------- /worldcup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/worldcup/__init__.py -------------------------------------------------------------------------------- /worldcup/tournament.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cs50/problems/HEAD/worldcup/tournament.py --------------------------------------------------------------------------------