s2
-
LeetCode 854. K-Similar Strings
原题链接在这里:https://leetcode.com/problems/k-similar-strings/ 题目: Strings s1 and s2 are k-simil…
-
集合
1、创建集合 创建集合使用{ }或set(),但是如果要创建空集合只能使用set(),因为{ }用来创建空字典。 特点: 1. 集合可以去掉重复数据; 2.…
-
[Oracle] LeetCode 415 Add Strings
Given two non-negative integers, num1 and num2 represented as string, return the sum of nu…
-
ESP32-S2 lwip
I’m not a big expert in lwIP, but I think the code is correct, since I spent time de…
-
什么是谓词下推,看这一篇就够了
目录 1.什么是谓词 2.什么是下推 3.什么是谓词下推 4.一些常见的应用 4.1传统数据库应用 4.2Hive中的谓词下推 4.3列式存储中的谓词下推 今天有个小伙伴问我,什么…
-
POJ1458 Common Subsequence
题目链接 题目 Description A subsequence of a given sequence is the given sequence with some elem…
-
牛客多校补题3
title: 牛客多校补题3 author: Sun-Wind date: July 26, 2022 J 思路 模拟+搜索,比赛的时候就一个细节写错了 #include <…
-
自学java基础day1
如何从底层逻辑理解: String s1 = new String(“hello”); String s2 = “hello”;的区…
-
DRŽAVA
link 总感觉COCI的题面读不懂。题意是说给定一些平面内的点,点有点权,两个点连边的边权是两个点的集合距离。请求出一棵生成树,满足树内存在点权和模K为0的子集,最小化最大边的边…
-
常用API(Java)
常用API Object toString方法 场景:当我们使用toString方法想要输出对象变量时,官方提供的toString方法会直接输出对象所在的地址,而不是我们想要的对象…