問題:
給一括號字串,檢查括號順序是否正確
範例:
1. 輸入: s = "()[]{}"
輸出: true
2. 輸入: s = "(]"
輸出: false
3. 輸入: s = "([)]"
輸出: false
問題:
給一括號字串,檢查括號順序是否正確
範例:
1. 輸入: s = "()[]{}"
輸出: true
2. 輸入: s = "(]"
輸出: false
3. 輸入: s = "([)]"
輸出: false
今天使用某個React package時,碰到以下問題
Module not found: Error: Can't resolve 'tty' in 'C:\React Projects\webpack_test\node_modules\react-jsonschema-form-material-ui\dist'
BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.
If you want to include a polyfill, you need to:
- add a fallback 'resolve.fallback: { "tty": require.resolve("tty-browserify") }'
- install 'tty-browserify'
If you don't want to include a polyfill, you can use an empty module like this:
resolve.fallback: { "tty": false }
問題:
給一字串陣列,找出最大相同開頭
範例:
1. 輸入: strs = [ "flower", "flow", "flight" ]
輸出: "fl"
2. 輸入: strs = [ "dog", "racecar", "car" ]
輸出: ""
問題:
把羅馬數字轉成阿拉伯數字
範例:
1. 輸入: s ="III" 輸出: 3
2. 輸入: s ="LVIII" 輸出: 58
3. 輸入: s ="MCMXCIV" 輸出: 1994