愚人码头
leetcode-最长公共前缀(easy) leetcode-最长公共前缀(easy)
Problem description编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。 示例 1: 输入: ["flower","flow","flight"] 输出: "fl" 示例 2: 输入:
2020-04-23
Leetcode-整数转罗马数字(medium) Leetcode-整数转罗马数字(medium)
Problem description罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 字符 数值I 1V 5X 10L
2020-04-21
Leetcode-盛水最多的容器(medium) Leetcode-盛水最多的容器(medium)
Problem descriptionGiven n non-negative integers a1, a2, …, an , where each represents a point at coordinate (i, ai). n
2020-04-18
Leetcode-回文数(easy) Leetcode-回文数(easy)
Problem descriptionDetermine whether an integer is a palindrome. An integer is a palindrome when it reads the same backw
2020-04-16
2 / 2