32. Longest Valid Parentheses
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.
JavaScript
/**
* @param {string} s
* @return {number}
*/
var longestValidParentheses = function(s) {
};