CC 03The game rock, paper, scissors is a classic tool used to make important decisions among two friends (read https://www.wikihow.com/Play-Rock,-Pape ...
分类:
编程语言 时间:
2019-12-19 13:01:43
阅读次数:
79
In-course assessment 3 (ICA 3), Autumn Term 2019 STAT0006Overview of ICA 3There are two tasks associated with this ICA. You must complete both. More d ...
分类:
其他好文 时间:
2019-12-19 12:59:33
阅读次数:
98
原题链接在这里:https://leetcode.com/problems/minimum-number-of-arrows-to-burst-balloons/ 题目: There are a number of spherical balloons spread in two-dimension ...
分类:
其他好文 时间:
2019-12-19 12:39:58
阅读次数:
72
近期准备参加CTF 一头雾水 开始练练手 https://2018game.picoctf.com/ 这个网站挺适合新手的(据说面向高中生?? 惭愧惭愧) 前面几个比较简单 就从 Resources - Points: 50 - (Solves: 26288)这个开始 Resources - Poi ...
分类:
其他好文 时间:
2019-12-19 11:30:57
阅读次数:
190
"?? ?? ??" 题意:求点对中,满足要互达必须经过a,b两点的对数,图为无向连通图 若(x,y)要满足互达必须经过(a,b),反过来想, a必须通过b点到达y点:满足a b y; b必须通过a点到达x点:满足b a x,无向图:x a b; 连起来即为:x a b y; ...
分类:
其他好文 时间:
2019-12-19 00:07:17
阅读次数:
154
B - Networking POJ - 1287 You are assigned to design network connections between certain points in a wide area. You are given a set of points in the a ...
分类:
其他好文 时间:
2019-12-18 23:24:52
阅读次数:
107
Choose two. You execute this command: TRUNCATE TABLE depts; Which two are true? A) It drops any triggers defined on the table. B) It retains the index ...
分类:
其他好文 时间:
2019-12-18 14:46:24
阅读次数:
132
下载kubernetest 源码 apt -get install git git clone https://github.com/kubernetes/kubernetes.git, 切换分支 cd kubernetes && git checkout -b remotes/origin/rel ...
分类:
其他好文 时间:
2019-12-18 13:05:30
阅读次数:
414
C.As Simple as One and Two A. As Simple as One and Two time limit per test 3 seconds memory limit per test 256 megabytes input standard input output s ...
分类:
其他好文 时间:
2019-12-17 22:13:12
阅读次数:
81
问题记录: C语言中,字符串是否可以通过连续的常量创建直接编辑拼接在一起? 比如下述语句赋值: const char *path = “this is string one” “this is string two”; 验证: 1 #include <stdio.h> 2 3 #define AVA ...
分类:
编程语言 时间:
2019-12-16 22:06:24
阅读次数:
161