热文LeetCode——重复的子字符串
题目: 给定一个非空的字符串,判断它是否可以由它的一个子串重复多次构成。给定的字符串只含有小写英文字母,并且长度不超过10000。 示例 1: 输入: "abab
热文[leetcode]9.回文数
判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 我最开始的解法,把数字转换成字符串,然后比较头尾,时间空间复杂度还过得去。当然反转方
热文LeetCode 罗马数 13. Roman to Integer
Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.
热文2019-02-26-算法-进化(回文数)
题目描述: 判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 示例 1: 输入: 121 输出: true 示例
热文关于script标签,我们应该知道的
一、静态标签 1、<script>标签按照它们出现的顺序被执行,不管是script代码块还是script外链,都遵循先出现先执行的原则。这意味着如果你的网站有很慢的脚本在
热文leetcode 最长公共前缀
问题描述 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。 > 输入: \[“flower”,“flow”,“flight”\
热文整数反转 LeetCode 7.Reverse Integer
Given a 32-bit signed integer, reverse digits of an integer. Example 1: In
热文有效的括号 【leetcode - 20 - 简单】
工作之后,果然和学校差距太多了。好久都没有刷题了,为了能不能继续工作的原因也是操碎了心 现在情况基本稳定了,可以继续工作,也可以回去上课。算是最满意的结果了吧
热文【LeetCode】9. Palindrome Number
Introduction Determine whether an integer is a palindrome. An integer is a palindrome
热文【LeetCode】7. Reverse Integer
Introduction Given a 32-bit signed integer, reverse digits of an integer. Example 1:
热文2019-03-5-算法-进化(最长公共前缀)
题目描述 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 “”。 示例 1: 输入: ["flower","flow","
热文回文数 Leecode 9. Palindrome Number
Determine whether an integer is a palindrome. An integer is a palindrome when it reads t
热文LeetCode 括号匹配 20. Valid Parentheses
Given a string containing just the characters ‘(’, ‘)’, ‘\{’, ‘\}’, ‘\[’ and ‘\]’, deter
热文第四天:《LeetCode一天一例》-----寻找最长公共子序列LCS(python实现)
最长公共子序列 > 题目:什么是公共子序列?假设,有一个串:‘我是个好人’, 还有一个串:‘我朋友是个好人’。 这两个串都有子串‘我是好’,这里的子串并不
热文戏精,程序员的桌面画风竟然是酱紫的!
【1】这里的山路十八弯,这里的文件排排站…… ![1240][] 【2】万有引力版桌面也非常炫酷啊 ![1240 1][] 【3】新功能终于上线了 ![1240 2]
热文LeetCode 最长公共前缀 14. Longest Common Prefix
Write a function to find the longest common prefix string amongst an array of strings.
热文回文字母卡片序列的基元素长度
![在这里插入图片描述][watermark_type_ZmFuZ3poZW5naGVpdGk_shadow_10_text_aHR0cHM6Ly9ibG9nLmNzZG4ub
热文leetcode第15题 3Sum(三数之和)
比较简单的一道题,题目的大意是说: > 给定一个长度为n的整数数组nums,从数组中找出所有不重复的 (三个数相加等于0的组合)。 > 注意,仅字典序不同的、包含数字相同
热文201812CCF-CCSP竞赛:第1题-小明上学
题目背景 小明是汉东省政法大学附属中学的一名学生,他每天都要骑自行车往返于家和学校。为了能尽可能充足地睡眠,他希望能够预计自己上学所需要的时间。他上学需要经过数段道路,
热文 98. Validate Binary Search Tree
Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST
热文 98. Validate Binary Search Tree
Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST
热文 98. Validate Binary Search Tree
Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST
热文 300. Longest Increasing Subsequence
Given an unsorted array of integers, find the length of longest increasing subsequence.
热文LeetCode 09 判断回文数字(难度:Easy)
题目大意:判断一个数字是不是回文数字 Determine whether an integer is a palindrome. An integer is a pal