Given two strings s1, s2, find the lowest ASCII sum of deleted characters to make two strings equal. Example 1: Input: s1 = "sea", s2 = "eat" Output: ...
分类:
其他好文 时间:
2020-07-28 14:45:21
阅读次数:
310
Additive Number Additive number is a string whose digits can form additive sequence. A valid additive sequence should contain at least three numbers. ...
分类:
其他好文 时间:
2020-07-27 17:46:30
阅读次数:
60
概念: 硬盘中的数据永久保存,内存中的数据临时保存 I:input 输入(读取) 输入:将硬盘上的数据读取到内存中使用 O:output 输出(写入)输出:将内存中的数据,写入到硬盘中保存 流:数据(字符、字节)1个字符=2个字节 1个字节=8个二进制位 顶级父类们: ...
分类:
其他好文 时间:
2020-07-27 13:52:49
阅读次数:
69
include<stdio>intmain{printf("helloworld");return0;}#include<stdio>:与高级c语言打个招呼include:包含std:standard标准i:input输出o:output输入intmain:开始int:整型main:主函数print:打印f:function函数(“”):输出内容retu
分类:
编程语言 时间:
2020-07-27 10:02:02
阅读次数:
134
Given a set of sticks of various lengths, is it possible to join them end-to-end to form a square? InputThe first line of input contains N, the number ...
分类:
其他好文 时间:
2020-07-27 09:42:59
阅读次数:
80
这道题其实难度不算大,关键是有点坑。。。 下面讲讲我做此题的一些心得: 测试点2是白给,如果测试点2都过不了就完全是程序逻辑的问题。 测试点0和3 对应的是输出空格的问题,即当每行的字符输出完以后,无需再在其右侧输出空格。 测试点1 对应的是当所给数字恰好能构成一个沙漏时,也需输出0 (题目给的例子 ...
分类:
其他好文 时间:
2020-07-27 09:36:14
阅读次数:
64
Find Minimum in Rotated Sorted Array II (H) 题目 Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., [ ...
分类:
其他好文 时间:
2020-07-26 15:29:37
阅读次数:
58
digitalWrite() 说明 将数字引脚写HIGH(高电平)或LOW(低电平) 如果该引脚通过pinMode()设置为输出模式(OUTPUT),您可以通过digitalWrite()语句将该引脚设置为HIGH(5伏特)或LOW(0伏特/GND)。 如果该引脚通过pinMode()设置为输入模式 ...
分类:
其他好文 时间:
2020-07-26 00:34:17
阅读次数:
52
4 开启 Reduce 输出阶段压缩 当 Hive 将 输 出 写 入 到 表 中 时 , 输 出 内 容 同 样 可 以 进 行 压 缩 。 属 性hive.exec.compress.output 控制着这个功能。用户可能需要保持默认设置文件中的默认值 false, 这样默认的输出就是非压缩的纯 ...
分类:
其他好文 时间:
2020-07-24 21:30:31
阅读次数:
69
一:主函数 static Socket client; static CancellationTokenSource cancelTokenSource = new CancellationTokenSource(); static void Main(string[] args) { //01 C ...
分类:
其他好文 时间:
2020-07-24 21:18:20
阅读次数:
83