创建本地密匙
按下WinR输入cmd,输入
ssh-keygen -t rsa然后连续回车直到结束 找到Your public key has been saved in C:\Users\Administrator/.ssh/id_rsa.pub,每个人都不一样找到密匙所在地 打开id_rsa.pub这个文件,可以用记事本打开&am…
1.杂题 1.1 计算二进制中1的个数
AcWing import java.util.*;public class Main{public static void main(String[] args) {Scanner sc new Scanner(System.in);int n sc.nextInt();int[] num new int[n];for (int i 0; i < n; i) {num[i] sc.nextInt();}int[] arr n…
力扣题目链接
列转行
SELECT product_id, store1 store, store1 price FROM products WHERE store1 IS NOT NULL
UNION
SELECT product_id, store2 store, store2 price FROM products WHERE store2 IS NOT NULL
UNION
SELECT product_id, store3 store, store3 price FROM p…
论文题目:A dynamic multi-objective optimization based on a hybrid of pivot points prediction and diversity strategies
基于枢轴点预测和多样性策略混合的动态多目标优化(Jinhua Zheng a,b,d, Fei Zhou a,b,∗, Juan Zou a,b, Shengxiang Yang a…
基于深度学习的图像去雨去雾 文末附有源码下载地址 b站视频地址:
https://www.bilibili.com/video/BV1Jr421p7cT/ 基于深度学习的图像去雨去雾,使用的网络为unet, 网络代码:
import torch
import torch.nn as nn
from torchsumm…