Zhao Mingli

Results 2 issues of Zhao Mingli

https://github.com/pathikrit/scalgos/blob/9e99f73b4241f42cc40a1fd890e72dbeda2df54f/src/main/scala/com/github/pathikrit/scalgos/DynamicProgramming.scala#L146 When call editDistance(List("c"),List("b"),2,1,5), the expected cost should be 3 (one deletion + one addition). Now it returns 2. Probably it can be modified as below? ```scala case (a, b)...

https://github.com/pathikrit/scalgos/blob/9e99f73b4241f42cc40a1fd890e72dbeda2df54f/src/main/scala/com/github/pathikrit/scalgos/Greedy.scala#L15 ```scala def maxRectangleInHistogram(heights: List[Int]): Int = { @tailrec def solve(stack: List[(Int, Int)], remaining: List[(Int, Int)],maxArea:Int): Int = { def area(x: Int, y: Int) = (heights.length - remaining.length - x)...