Skip to content

Instantly share code, notes, and snippets.

@ms314006
Created March 22, 2020 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ms314006/a167c1ed4b7d86b67f92ab9be5426e19 to your computer and use it in GitHub Desktop.
Save ms314006/a167c1ed4b7d86b67f92ab9be5426e19 to your computer and use it in GitHub Desktop.
var longestCommonPrefix = function(strs) {
const firstStr = strs[0];
if (!firstStr) return '';
// 其他省略
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment