This repository contains the scripts and projects of the MITx courses on edX.org. Currently all content belongs to the 6.00.1x course.
Simple 'Hello World' style Python script.
Count vowels in an arbitrary string.
Count the string 'bob' in an arbitrary string.
Find the longest substring of an arbitrary string, in which the letters are in alphabetical order.
Calculate a credit card balance after one year, using annual interest rate and minimum monthly payment rate. Prints out every month in detail.
Month: 1
Minimum monthly payment: 96.0
Remaining balance: 4784.0
...
Total paid: 96.0
Remaining balance: 4784.0
Calculate a minimum fixed monthly payment to pay off a credit card balance within 12 months. Also using annual interest rate and 10$ increments.
Lowest Payment: 180
Calculate a minimum fixed monthly payment to pay off a credit card balance within 12 months. Also using annual interest rate and using bisection search.
Lowest Payment: 90325.03
"MITx: 6.00.1x Introduction to Computer Science and Programming Using Python" is just what the title entails, with the high quality of MIT.
12 Lectures, 8 weeks, 7 Problem Sets, 2 exams and one verified certificate from MIT itself. 😉
All files written by me, unless otherwise stated.