├── LICENSE ├── Pipfile ├── Pipfile.lock ├── ProblemSet_0 ├── Einstein.py ├── Indoor_Voice.py ├── Making_Faces.py ├── Playback_Speed.py └── Tip_Calculator.py ├── ProblemSet_1 ├── Deep_Thought.py ├── File_Extensions.py ├── Home_Federal_Savings_Bank.py ├── Math_Interpreter.py └── Meal_Time.py ├── ProblemSet_2 ├── Coke_Machine.py ├── Just_setting_up_my_twttr.py ├── Nutrition_Facts.py ├── Vanity_Plates.py └── camelCase.py ├── ProblemSet_3 ├── Felipe’s_Taqueria.py ├── Fuel_Gauge.py ├── Grocery_List.py └── Outdated.py ├── ProblemSet_4 ├── Adieu_Adieu.py ├── Bitcoin_Price_Index.py ├── Emojize.py ├── Frank_Ian_and_Glen’s_Letters.py ├── Guessing_Game.py └── Little_Professor.py ├── ProblemSet_5 ├── Test-PSET-1-Bank │ ├── bank.py │ └── test_bank.py ├── Test-PSET2-Plates │ ├── plates.py │ └── test_plates.py ├── Test-PSET2-Twittr │ ├── test_twttr.py │ └── twttr.py └── Test-PSET3-Fuel │ ├── fuel.py │ └── test_fuel.py ├── ProblemSet_6 ├── CS50P_Shirt │ ├── after1.jpg │ ├── before1.jpg │ ├── before2.jpg │ ├── before3.jpg │ ├── shirt.png │ └── shirt.py ├── Lines_Of_Code │ ├── goodbye.py │ ├── hello.py │ └── lines.py ├── PizzaPy │ ├── pizza.py │ ├── regular.csv │ └── sicilian.csv └── Scourgify │ ├── Scourgify.py │ ├── after.csv │ └── before.csv ├── ProblemSet_7 ├── NUMB3RS │ ├── NUMB3RS.py │ └── test_NUMB3RS.py ├── Regular_um_Expressions │ ├── test_um.py │ └── um.py ├── Response_Validation │ └── response.py ├── Watch_on_YouTube │ └── watch.py └── Working_9_to_5 │ ├── test_working.py │ └── working.py ├── ProblemSet_8 ├── Cookie_Jar │ ├── jar.py │ └── test_jar.py ├── Seasons_of_Love │ ├── seasons.py │ └── test_seasons.py └── Shirtificate │ ├── shirtificate.pdf │ ├── shirtificate.png │ └── shirtificate.py └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /ProblemSet_0/Einstein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_0/Einstein.py -------------------------------------------------------------------------------- /ProblemSet_0/Indoor_Voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_0/Indoor_Voice.py -------------------------------------------------------------------------------- /ProblemSet_0/Making_Faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_0/Making_Faces.py -------------------------------------------------------------------------------- /ProblemSet_0/Playback_Speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_0/Playback_Speed.py -------------------------------------------------------------------------------- /ProblemSet_0/Tip_Calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_0/Tip_Calculator.py -------------------------------------------------------------------------------- /ProblemSet_1/Deep_Thought.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_1/Deep_Thought.py -------------------------------------------------------------------------------- /ProblemSet_1/File_Extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_1/File_Extensions.py -------------------------------------------------------------------------------- /ProblemSet_1/Home_Federal_Savings_Bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_1/Home_Federal_Savings_Bank.py -------------------------------------------------------------------------------- /ProblemSet_1/Math_Interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_1/Math_Interpreter.py -------------------------------------------------------------------------------- /ProblemSet_1/Meal_Time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_1/Meal_Time.py -------------------------------------------------------------------------------- /ProblemSet_2/Coke_Machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_2/Coke_Machine.py -------------------------------------------------------------------------------- /ProblemSet_2/Just_setting_up_my_twttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_2/Just_setting_up_my_twttr.py -------------------------------------------------------------------------------- /ProblemSet_2/Nutrition_Facts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_2/Nutrition_Facts.py -------------------------------------------------------------------------------- /ProblemSet_2/Vanity_Plates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_2/Vanity_Plates.py -------------------------------------------------------------------------------- /ProblemSet_2/camelCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_2/camelCase.py -------------------------------------------------------------------------------- /ProblemSet_3/Felipe’s_Taqueria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_3/Felipe’s_Taqueria.py -------------------------------------------------------------------------------- /ProblemSet_3/Fuel_Gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_3/Fuel_Gauge.py -------------------------------------------------------------------------------- /ProblemSet_3/Grocery_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_3/Grocery_List.py -------------------------------------------------------------------------------- /ProblemSet_3/Outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_3/Outdated.py -------------------------------------------------------------------------------- /ProblemSet_4/Adieu_Adieu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_4/Adieu_Adieu.py -------------------------------------------------------------------------------- /ProblemSet_4/Bitcoin_Price_Index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_4/Bitcoin_Price_Index.py -------------------------------------------------------------------------------- /ProblemSet_4/Emojize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_4/Emojize.py -------------------------------------------------------------------------------- /ProblemSet_4/Frank_Ian_and_Glen’s_Letters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_4/Frank_Ian_and_Glen’s_Letters.py -------------------------------------------------------------------------------- /ProblemSet_4/Guessing_Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_4/Guessing_Game.py -------------------------------------------------------------------------------- /ProblemSet_4/Little_Professor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_4/Little_Professor.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET-1-Bank/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET-1-Bank/bank.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET-1-Bank/test_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET-1-Bank/test_bank.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET2-Plates/plates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET2-Plates/plates.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET2-Plates/test_plates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET2-Plates/test_plates.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET2-Twittr/test_twttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET2-Twittr/test_twttr.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET2-Twittr/twttr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET2-Twittr/twttr.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET3-Fuel/fuel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET3-Fuel/fuel.py -------------------------------------------------------------------------------- /ProblemSet_5/Test-PSET3-Fuel/test_fuel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_5/Test-PSET3-Fuel/test_fuel.py -------------------------------------------------------------------------------- /ProblemSet_6/CS50P_Shirt/after1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/CS50P_Shirt/after1.jpg -------------------------------------------------------------------------------- /ProblemSet_6/CS50P_Shirt/before1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/CS50P_Shirt/before1.jpg -------------------------------------------------------------------------------- /ProblemSet_6/CS50P_Shirt/before2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/CS50P_Shirt/before2.jpg -------------------------------------------------------------------------------- /ProblemSet_6/CS50P_Shirt/before3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/CS50P_Shirt/before3.jpg -------------------------------------------------------------------------------- /ProblemSet_6/CS50P_Shirt/shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/CS50P_Shirt/shirt.png -------------------------------------------------------------------------------- /ProblemSet_6/CS50P_Shirt/shirt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/CS50P_Shirt/shirt.py -------------------------------------------------------------------------------- /ProblemSet_6/Lines_Of_Code/goodbye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/Lines_Of_Code/goodbye.py -------------------------------------------------------------------------------- /ProblemSet_6/Lines_Of_Code/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/Lines_Of_Code/hello.py -------------------------------------------------------------------------------- /ProblemSet_6/Lines_Of_Code/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/Lines_Of_Code/lines.py -------------------------------------------------------------------------------- /ProblemSet_6/PizzaPy/pizza.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/PizzaPy/pizza.py -------------------------------------------------------------------------------- /ProblemSet_6/PizzaPy/regular.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/PizzaPy/regular.csv -------------------------------------------------------------------------------- /ProblemSet_6/PizzaPy/sicilian.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/PizzaPy/sicilian.csv -------------------------------------------------------------------------------- /ProblemSet_6/Scourgify/Scourgify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/Scourgify/Scourgify.py -------------------------------------------------------------------------------- /ProblemSet_6/Scourgify/after.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/Scourgify/after.csv -------------------------------------------------------------------------------- /ProblemSet_6/Scourgify/before.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_6/Scourgify/before.csv -------------------------------------------------------------------------------- /ProblemSet_7/NUMB3RS/NUMB3RS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/NUMB3RS/NUMB3RS.py -------------------------------------------------------------------------------- /ProblemSet_7/NUMB3RS/test_NUMB3RS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/NUMB3RS/test_NUMB3RS.py -------------------------------------------------------------------------------- /ProblemSet_7/Regular_um_Expressions/test_um.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/Regular_um_Expressions/test_um.py -------------------------------------------------------------------------------- /ProblemSet_7/Regular_um_Expressions/um.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/Regular_um_Expressions/um.py -------------------------------------------------------------------------------- /ProblemSet_7/Response_Validation/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/Response_Validation/response.py -------------------------------------------------------------------------------- /ProblemSet_7/Watch_on_YouTube/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/Watch_on_YouTube/watch.py -------------------------------------------------------------------------------- /ProblemSet_7/Working_9_to_5/test_working.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/Working_9_to_5/test_working.py -------------------------------------------------------------------------------- /ProblemSet_7/Working_9_to_5/working.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_7/Working_9_to_5/working.py -------------------------------------------------------------------------------- /ProblemSet_8/Cookie_Jar/jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_8/Cookie_Jar/jar.py -------------------------------------------------------------------------------- /ProblemSet_8/Cookie_Jar/test_jar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_8/Cookie_Jar/test_jar.py -------------------------------------------------------------------------------- /ProblemSet_8/Seasons_of_Love/seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_8/Seasons_of_Love/seasons.py -------------------------------------------------------------------------------- /ProblemSet_8/Seasons_of_Love/test_seasons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_8/Seasons_of_Love/test_seasons.py -------------------------------------------------------------------------------- /ProblemSet_8/Shirtificate/shirtificate.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_8/Shirtificate/shirtificate.pdf -------------------------------------------------------------------------------- /ProblemSet_8/Shirtificate/shirtificate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_8/Shirtificate/shirtificate.png -------------------------------------------------------------------------------- /ProblemSet_8/Shirtificate/shirtificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/ProblemSet_8/Shirtificate/shirtificate.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realTristan/CS50P/HEAD/README.md --------------------------------------------------------------------------------