LESSON OUTLINE
Slideshow:
https://docs.google.com/presentation/d/1P1bemdNq2aKSnfJR05unW_NbeFSn-DE6ATrGODZUym4/edit#slide=id.p
1. Homework Review (solution on Class 3 blog post)
2. Leetcode exercise - Roman to integer
a. https://leetcode.com/problems/roman-to-integer/
b. SOLUTION:
3. Leetcode exercise - Median of two sorted arrays
a. https://leetcode.com/problems/median-of-two-sorted-arrays/
HOMEWORK
Finish "Median of two sorted arrays" Leetcode exercise.
HOMEWORK SOLUTION
class Solution:
def findMedianSortedArrays(self, nums1: List[int], nums2: List[int]) -> float:
return median(nums1+nums2)