LeetCode - The Stack Part

less than 1 minute read

The typical problems in LeetCode is the basic calculator series. The main idea is to use stack and read the input string from end to start if there’s bracket. Or we can read the string from the beginning and do it recursively.

Another prolem is the move to make increasing problem. see this (link)[https://www.geeksforgeeks.org/minimum-incrementdecrement-to-make-array-non-increasing/] for details.