cur
-
LeetCode 128 Longest Consecutive Sequence
Given an unsorted array of integers nums, return the length of the longest consecutive ele…
-
leetcode 78. 子集 js 实现
给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。 解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。 示例 1: 输入:nums …
-
LeetCode 854. K-Similar Strings
原题链接在这里:https://leetcode.com/problems/k-similar-strings/ 题目: Strings s1 and s2 are k-simil…
-
10.异步mysql
python中操作mysql连接、操作、断开都是网络IO #安装支持异步aiomysql的模块 pip3 install aiomysql async def execute():…
-
[题解] Atcoder Regular Contest ARC 146 A B C D 题解
点我看题 A – Three Cards 先把所有数按位数从多到少排序,答案的位数一定等于位数最多的三个数的位数之和/(tot/)。对于每个i,把有i位的数排序,并记录…
-
LeetCode 反转链表算法题解 All In One
LeetCode 反转链表算法题解 All In One js / ts 实现反转链表 反转链表原理 图解 双指针,swap 交换 // 反转 双指针 // swap: a = b…
-
算法总结
今天放两道刚刷的关于链表的题 package com.chenghaixiang.jianzhi2.day09; import java.util.ArrayList; impor…
-
一键安装Mysql并配置主从复制
出于学习目的, 编写一键搭建Mysql脚本 主机信息 IP 名称 角色 192.168.114.133 node1 master 192.168.114.134 node2 sla…
-
SQL serve 游标记录数据条数
这个很好办,你在你的游标循环中加一个变量纪录滚过的纪录即可 如: declare @cur_pos int declare mycursor cursor for select c…
-
2022“杭电杯”中国大学生算法设计超级联赛(3)1002/1011补题
2022“杭电杯”中国大学生算法设计超级联赛(3) 大量参考官方题解 1002 Boss Rush 题意:给定/(n/)个技能,每个技能最多使用一次,释放第/(i/)个技能需要的回…