Descpition There are n people and 40 types of hats labeled from 1 to 40. Given a list of list of integers hats, where hats[i] is a list of all hats pr ...
分类:
其他好文 时间:
2020-06-25 13:58:26
阅读次数:
56
测试机器配置: CPU model : AMD Ryzen 9 3900X 12-Core Processor Number of cores : 8 CPU frequency : 3792.878 MHz Total size of Disk : 1112.8 GB (232.3 GB Used ...
分类:
其他好文 时间:
2020-06-25 12:21:58
阅读次数:
100
运算符 一 算术运算符 加减乘除求余数 + - * / % int a = 2, b = 4;? int c = a + b; cout << "c = " << c << endl; // 6? int d = a - b; cout << "d = " << d << endl; // -2? ...
分类:
编程语言 时间:
2020-06-25 11:53:47
阅读次数:
53
#!/usr/bin/env python3 # * coding: utf8 *"""目录:Python格式化字符串的4中方式一:%号(掌握)二:str.format(掌握)三:f-Strings(掌握)四:标准库模板五:总结四种方式的应用场景""""""Python格式化字符串的4种方 ...
分类:
其他好文 时间:
2020-06-25 11:48:42
阅读次数:
64
Find the Duplicate Number (M) 题目 Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least ...
分类:
其他好文 时间:
2020-06-25 09:20:33
阅读次数:
64
防抖 任务频繁触发的情况下,只有任务触发的间隔超过指定间隔的时候,任务才会执行。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-wi ...
分类:
其他好文 时间:
2020-06-24 23:41:58
阅读次数:
70
struct msghdr 结构体 struct iovec { /* Scatter/gather arrayitems */ void *iov_base; /*Starting address */ size_t iov_len; /* Number of bytes to transfer* ...
分类:
其他好文 时间:
2020-06-24 23:25:42
阅读次数:
75
JS 数字型三个特殊值 Infinity ,代表无穷大,大于任何数值 -Infinity ,代表无穷小,小于任何数值 NaN ,Not a number,代表一个非数值 isNaN的使用: isNaN(x): x是数字型的时候(也就是它不是非数字) 它的返回值为 false x是非数字型的时候 它的 ...
分类:
Web程序 时间:
2020-06-24 20:04:45
阅读次数:
84
题意: 给出同一个数 \(n\) \((1\leq n \leq 10^9)\),两个人玩游戏,有两种操作: 1.除以一个大于 $1$ 的奇数因子 2.当 \(n>1\) 时,可以减 $1$ 无法操作的人输。 传送门 分析: 题目想复杂了,首先可以发现: \(n=1\),必输; \(n=2\),必胜 ...
分类:
其他好文 时间:
2020-06-24 19:32:55
阅读次数:
79
A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a re ...
分类:
其他好文 时间:
2020-06-24 19:28:08
阅读次数:
55