首页 > TAG信息列表 > FDDLC
#力扣LeetCode2053. 数组中第 K 个独一无二的字符串 @FDDLC
题目描述: 2053. 数组中第 K 个独一无二的字符串 - 力扣(LeetCode) (leetcode-cn.com) Java代码: class Solution { public String kthDistinct(String[] a, int k) { HashMap<String,Integer> map=new HashMap<>(); for(String s:a)map.put(s,map.getOrDefaul#力扣LeetCode1967. 作为子字符串出现在单词中的字符串数目 @FDDLC
题目描述: 1967. 作为子字符串出现在单词中的字符串数目 - 力扣(LeetCode) (leetcode-cn.com) Java代码: class Solution { public int numOfStrings(String[] a, String w) { int ans=0; for(String s:a)if(w.contains(s))ans++; return ans; }#力扣LeetCode1582. 二进制矩阵中的特殊位置 @FDDLC
题目描述: 1582. 二进制矩阵中的特殊位置 - 力扣(LeetCode) (leetcode-cn.com) Java代码: class Solution { public int numSpecial(int[][] m) { int ans=0; for(int c=m[0].length-1;c>=0;c--){ for(int r=m.length-1,cnt=0;r>=0;r--){#力扣LeetCode1984. 学生分数的最小差值 @FDDLC
题目描述: 1984. 学生分数的最小差值 - 力扣(LeetCode) (leetcode-cn.com) Java代码: class Solution { public int minimumDifference(int[] a, int k) { int ans=Integer.MAX_VALUE; Arrays.sort(a); for(int i=a.length-k;i>=0;i--){ a#力扣LeetCode1935. 可以输入的最大单词数 @FDDLC
题目描述: 1935. 可以输入的最大单词数 - 力扣(LeetCode) (leetcode-cn.com) 自测用例: "hello world" "ad" "leet code" "lt" "leet code" "e" Java代码: class Solution { public int canBeTypedWords(String text, String bro#力扣LeetCode1704. 判断字符串的两半是否相似 @FDDLC
题目描述: 1704. 判断字符串的两半是否相似 - 力扣(LeetCode) (leetcode-cn.com) Java代码: class Solution { int[] m=new int['z'+1]; public int count(String s,int bg,int ed){ int cnt=0; for(int i=bg;i<ed;i++)cnt+=m[s.charAt(i)]; retur#力扣LeetCode720. 词典中最长的单词 @FDDLC
题目描述: 720. 词典中最长的单词 - 力扣(LeetCode) (leetcode-cn.com) 自测用例: ["w","wo","wor","worl","world"] ["a","banana","app","appl","ap","apply","apple&#力扣 LeetCode1266. 访问所有点的最小时间 @FDDLC
题目描述: 1266. 访问所有点的最小时间 - 力扣(LeetCode) (leetcode-cn.com) Java代码: class Solution { public int minTimeToVisitAllPoints(int[][] ps) { int ans=0; for(int pi=1;pi<ps.length;pi++){ int dx=Math.abs(ps[pi][0]-ps[pi-1]#JavaScript:逐条消息(通知)显示 #消息滚动 @FDDLC
一、先上效果 二、代码 1、项目结构: 2、template.html: <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <div class="scroll-div"><!--建议保持这种架构--> <ul> <li&g#无刷新提交表单 @FDDLC
一、问题引入 先看一个常规的表单提交: 相关的HTML代码: <form> 用户名:<input type="text"><br> 密码:<input type="password"><br> <input type="submit" name="Submit" value="提交"> </form> 提交前:#力扣 LeetCode383. 赎金信 @FDDLC
题目描述: https://leetcode-cn.com/problems/ransom-note/ Java代码: class Solution { public boolean canConstruct(String s, String S) {//均只含小写字母 if(s.length()>S.length())return false; int[] cnt=new int[26]; for(char e:S.toCh#力扣 LeetCode1592. 重新排列单词间的空格 @FDDLC
题目描述: https://leetcode-cn.com/problems/rearrange-spaces-between-words/ 自测用例: " this is a sentence " " practice makes perfect" "hello world" " walks udp package into bar a" "a" " a&qu#力扣 LeetCode1689. 十-二进制数的最少数目 @FDDLC
题目描述: https://leetcode-cn.com/problems/partitioning-into-minimum-number-of-deci-binary-numbers/ 自测用例: "32" "82734" "27346209830709182346" "101" "1001110" "10202" "133253666436463364328954#力扣 LeetCode1295. 统计位数为偶数的数字 @FDDLC
题目描述: https://leetcode-cn.com/problems/find-numbers-with-even-number-of-digits/ Java代码: class Solution { public boolean judge(int n){ //1 <= nums[i] <= 10^5 if(n<10)return false; else if(n<100)return true; else if#力扣 LeetCode剑指 Offer 64. 求1+2+…+n @FDDLC
题目描述: https://leetcode-cn.com/problems/qiu-12n-lcof/ Java代码: class Solution { public int sumNums(int n) { boolean b=n!=0&&(n=n+sumNums(n-1))==0; return n; } }#力扣 LeetCode496. 下一个更大元素 I @FDDLC
题目描述: https://leetcode-cn.com/problems/next-greater-element-i/ Java代码: class Solution { public int[] nextGreaterElement(int[] nums1, int[] nums2) { int[] answer=new int[nums1.length]; for(int i=0,j;i<nums1.length;i++){#力扣 LeetCode176. 第二高的薪水 @FDDLC
题目描述: https://leetcode-cn.com/problems/second-highest-salary/ 方法一: select (select distinct Salary from Employee order by Salary desc limit 1,1) as SecondHighestSalary; 方法二: select max(Salary) as SecondHighestSalary from (select Salary from Emp#Vue入门 #Vue相关推荐 @FDDLC
一、Vue官方的自我介绍: Vue的特点:声明式渲染,且是响应式的(Vue.js 的核心是一个允许采用简洁的模板语法来声明式地将数据渲染进 DOM 的系统) 二、Vue的安装 1、官方发布的安装指南:https://cn.vuejs.org/v2/guide/installation.html 本地开发时建议下载到本地: 开#力扣 LeetCode829. 连续整数求和 @FDDLC
题目描述: 829. 连续整数求和 - 力扣(LeetCode) (leetcode-cn.com) Java代码一: class Solution { public int consecutiveNumbersSum(int N) { //1 <= N <= 10 ^ 9,连续个数>=1;试求有多少组连续正整数满足所有数字之和为 N int answer=0; for(int amount=1#力扣 LeetCode剑指 Offer 10- II. 青蛙跳台阶问题 #在所有 Java 提交中击败了 100.00% 的用户 @FDDLC
题目描述: 剑指 Offer 10- II. 青蛙跳台阶问题 - 力扣(LeetCode) (leetcode-cn.com) Java代码: class Solution { //0 <= n <= 100, 答案需要取模 1e9+7(1000000007) public int numWays(int n) { //f(n)=f(n-2)+f(n-1) //f(-1)=0 有效值:f(0)=1,f(1)=1,f(2)=2,f(3)=3 i#力扣 LeetCode1013. 将数组分成和相等的三个部分 # 在所有 Java 提交中击败了 100.00% 的用户 @FDDLC
题目描述: 1013. 将数组分成和相等的三个部分 - 力扣(LeetCode) (leetcode-cn.com) 给你一个整数数组 A,只有可以将其划分为三个和相等的非空部分时才返回 true,否则返回 false。 形式上,如果可以找出索引 i+1 < j 且满足 A[0] + A[1] + ... + A[i] == A[i+1] + A[i+2] + ... + A