├── Final_Exam ├── Problem_3.py ├── Problem_4.py ├── Problem_5.py ├── Problem_6.py ├── Problem_6 │ ├── Problem_6-1.py │ ├── Problem_6-2.py │ └── Problem_6-3.py └── Problem_7.py ├── MIT_python.PNG ├── MidTerm_Exam ├── Problem_1.py ├── Problem_2.py ├── Problem_3.py ├── Problem_4.py ├── Problem_5.py └── Problem_6.py ├── Projects ├── Encrypted_Decrypted_Message │ ├── ps6.py │ ├── story.txt │ └── words.txt ├── Hangman_Game │ ├── __pycache__ │ │ └── ps3_hangman.cpython-35.pyc │ ├── ps3_hangman.py │ └── words.txt └── Word_Game │ ├── ps4a.py │ ├── ps4b.py │ ├── test_ps4a.py │ └── words.txt ├── README.md ├── Week_1_Python-Basic ├── Excersice_Happy.py ├── Excersice_Hello_World.py ├── Excersice_vara_verb.py ├── Exercise_for.py ├── Exercise_while.py └── Problem_Set │ ├── Problem_1.py │ ├── Problem_2.py │ └── Problem_3.py ├── Week_2_Simple_Programs ├── Exercise_Grader.py ├── Exercise_eval_quadratic.py ├── Exercise_fourth_power.py ├── Exercise_gcd_iter.py ├── Exercise_gcd_recur.py ├── Exercise_guess_my_number.py ├── Exercise_is_in.py ├── Exercise_iter_power.py ├── Exercise_odd.py ├── Exercise_power_recur.py ├── Exercise_square.py └── Problem_set │ ├── Problem 1_Paying_Debt_off_in_a_Year.py │ ├── Problem 2_Paying_Debt_off_in_a_Year.py │ └── Problem 3_Using_Bisection_Search_to_Make_the_Program_Faster.py ├── Week_3_Structured_Types ├── Exercise_apply_to_each_1.py ├── Exercise_biggest.py ├── Exercise_how_many.py ├── Exercise_odd_tuples.py └── Problem_Set │ ├── Problem 1_Is_the_Word_Guessed.py │ ├── Problem_2_Printing_Out_the_User's_Guess.py │ ├── Problem_3_Printing_Out_all_Available_Letters.py │ └── Problem_4_The_Game.py ├── Week_4_Good_Programming_Practices ├── Exercise_integer_division.py ├── Exercise_simple_divide.py └── Problem_Set │ ├── Problem_1_Word_Scores.py │ ├── Problem_2_Dealing_with_Hands.py │ ├── Problem_3_Valid_Words.py │ ├── Problem_4_Hand_Length.py │ ├── Problem_5_Playing_a_Hand.py │ ├── Problem_6_Playing_a_Game.py │ └── Problem_7_You_and_your_Computer.py ├── Week_5_Object_Oriented_Programming ├── Exercise_coordinate.py ├── Exercise_genPrimes.py ├── Exercise_hand.py ├── Exercise_int_set.py └── Problem_Set │ ├── Problem_1_Build_the_Shift_Dictionary_and_Apply_Shift.py │ ├── Problem_2_PlaintextMessage.py │ ├── Problem_3_CiphertextMessage.py │ └── Problem_4_Decrypt_a_Story.py └── _config.yml /Final_Exam/Problem_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_3.py -------------------------------------------------------------------------------- /Final_Exam/Problem_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_4.py -------------------------------------------------------------------------------- /Final_Exam/Problem_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_5.py -------------------------------------------------------------------------------- /Final_Exam/Problem_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_6.py -------------------------------------------------------------------------------- /Final_Exam/Problem_6/Problem_6-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_6/Problem_6-1.py -------------------------------------------------------------------------------- /Final_Exam/Problem_6/Problem_6-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_6/Problem_6-2.py -------------------------------------------------------------------------------- /Final_Exam/Problem_6/Problem_6-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_6/Problem_6-3.py -------------------------------------------------------------------------------- /Final_Exam/Problem_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Final_Exam/Problem_7.py -------------------------------------------------------------------------------- /MIT_python.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/MIT_python.PNG -------------------------------------------------------------------------------- /MidTerm_Exam/Problem_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/MidTerm_Exam/Problem_1.py -------------------------------------------------------------------------------- /MidTerm_Exam/Problem_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/MidTerm_Exam/Problem_2.py -------------------------------------------------------------------------------- /MidTerm_Exam/Problem_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/MidTerm_Exam/Problem_3.py -------------------------------------------------------------------------------- /MidTerm_Exam/Problem_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/MidTerm_Exam/Problem_4.py -------------------------------------------------------------------------------- /MidTerm_Exam/Problem_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/MidTerm_Exam/Problem_5.py -------------------------------------------------------------------------------- /MidTerm_Exam/Problem_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/MidTerm_Exam/Problem_6.py -------------------------------------------------------------------------------- /Projects/Encrypted_Decrypted_Message/ps6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Encrypted_Decrypted_Message/ps6.py -------------------------------------------------------------------------------- /Projects/Encrypted_Decrypted_Message/story.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Encrypted_Decrypted_Message/story.txt -------------------------------------------------------------------------------- /Projects/Encrypted_Decrypted_Message/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Encrypted_Decrypted_Message/words.txt -------------------------------------------------------------------------------- /Projects/Hangman_Game/__pycache__/ps3_hangman.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Hangman_Game/__pycache__/ps3_hangman.cpython-35.pyc -------------------------------------------------------------------------------- /Projects/Hangman_Game/ps3_hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Hangman_Game/ps3_hangman.py -------------------------------------------------------------------------------- /Projects/Hangman_Game/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Hangman_Game/words.txt -------------------------------------------------------------------------------- /Projects/Word_Game/ps4a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Word_Game/ps4a.py -------------------------------------------------------------------------------- /Projects/Word_Game/ps4b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Word_Game/ps4b.py -------------------------------------------------------------------------------- /Projects/Word_Game/test_ps4a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Word_Game/test_ps4a.py -------------------------------------------------------------------------------- /Projects/Word_Game/words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Projects/Word_Game/words.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/README.md -------------------------------------------------------------------------------- /Week_1_Python-Basic/Excersice_Happy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Excersice_Happy.py -------------------------------------------------------------------------------- /Week_1_Python-Basic/Excersice_Hello_World.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Excersice_Hello_World.py -------------------------------------------------------------------------------- /Week_1_Python-Basic/Excersice_vara_verb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Excersice_vara_verb.py -------------------------------------------------------------------------------- /Week_1_Python-Basic/Exercise_for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Exercise_for.py -------------------------------------------------------------------------------- /Week_1_Python-Basic/Exercise_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Exercise_while.py -------------------------------------------------------------------------------- /Week_1_Python-Basic/Problem_Set/Problem_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Problem_Set/Problem_1.py -------------------------------------------------------------------------------- /Week_1_Python-Basic/Problem_Set/Problem_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Problem_Set/Problem_2.py -------------------------------------------------------------------------------- /Week_1_Python-Basic/Problem_Set/Problem_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_1_Python-Basic/Problem_Set/Problem_3.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_Grader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_Grader.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_eval_quadratic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_eval_quadratic.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_fourth_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_fourth_power.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_gcd_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_gcd_iter.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_gcd_recur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_gcd_recur.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_guess_my_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_guess_my_number.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_is_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_is_in.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_iter_power.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_iter_power.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_odd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_odd.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_power_recur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_power_recur.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Exercise_square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Exercise_square.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Problem_set/Problem 1_Paying_Debt_off_in_a_Year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Problem_set/Problem 1_Paying_Debt_off_in_a_Year.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Problem_set/Problem 2_Paying_Debt_off_in_a_Year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Problem_set/Problem 2_Paying_Debt_off_in_a_Year.py -------------------------------------------------------------------------------- /Week_2_Simple_Programs/Problem_set/Problem 3_Using_Bisection_Search_to_Make_the_Program_Faster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_2_Simple_Programs/Problem_set/Problem 3_Using_Bisection_Search_to_Make_the_Program_Faster.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Exercise_apply_to_each_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Exercise_apply_to_each_1.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Exercise_biggest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Exercise_biggest.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Exercise_how_many.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Exercise_how_many.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Exercise_odd_tuples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Exercise_odd_tuples.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Problem_Set/Problem 1_Is_the_Word_Guessed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Problem_Set/Problem 1_Is_the_Word_Guessed.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Problem_Set/Problem_2_Printing_Out_the_User's_Guess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Problem_Set/Problem_2_Printing_Out_the_User's_Guess.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Problem_Set/Problem_3_Printing_Out_all_Available_Letters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Problem_Set/Problem_3_Printing_Out_all_Available_Letters.py -------------------------------------------------------------------------------- /Week_3_Structured_Types/Problem_Set/Problem_4_The_Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_3_Structured_Types/Problem_Set/Problem_4_The_Game.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Exercise_integer_division.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Exercise_integer_division.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Exercise_simple_divide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Exercise_simple_divide.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Problem_Set/Problem_1_Word_Scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Problem_Set/Problem_1_Word_Scores.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Problem_Set/Problem_2_Dealing_with_Hands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Problem_Set/Problem_2_Dealing_with_Hands.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Problem_Set/Problem_3_Valid_Words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Problem_Set/Problem_3_Valid_Words.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Problem_Set/Problem_4_Hand_Length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Problem_Set/Problem_4_Hand_Length.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Problem_Set/Problem_5_Playing_a_Hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Problem_Set/Problem_5_Playing_a_Hand.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Problem_Set/Problem_6_Playing_a_Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Problem_Set/Problem_6_Playing_a_Game.py -------------------------------------------------------------------------------- /Week_4_Good_Programming_Practices/Problem_Set/Problem_7_You_and_your_Computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_4_Good_Programming_Practices/Problem_Set/Problem_7_You_and_your_Computer.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Exercise_coordinate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Exercise_coordinate.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Exercise_genPrimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Exercise_genPrimes.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Exercise_hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Exercise_hand.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Exercise_int_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Exercise_int_set.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Problem_Set/Problem_1_Build_the_Shift_Dictionary_and_Apply_Shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Problem_Set/Problem_1_Build_the_Shift_Dictionary_and_Apply_Shift.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Problem_Set/Problem_2_PlaintextMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Problem_Set/Problem_2_PlaintextMessage.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Problem_Set/Problem_3_CiphertextMessage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Problem_Set/Problem_3_CiphertextMessage.py -------------------------------------------------------------------------------- /Week_5_Object_Oriented_Programming/Problem_Set/Problem_4_Decrypt_a_Story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/Week_5_Object_Oriented_Programming/Problem_Set/Problem_4_Decrypt_a_Story.py -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codenigma1/MITx-6.00.1x_Introduction-to-Computer-Science-and-Programming-Using-Python/HEAD/_config.yml --------------------------------------------------------------------------------