select a.date , a.measure , case when b.measure is null or b.measure=0 then null else concat( cast( cast((if(a.measure is null, 0, a.measure)-if(b.mea ...
分类:
其他好文 时间:
2020-02-10 13:56:06
阅读次数:
154
引言:你的流程是啥样的?阿里的流程是啥样? 以下是绝大多数公司的流程或者是面试的答案,不会有很大区别: 一般工作流程如下: 1.参与prd设计评审 2.确定业务后拟定测试case,保证场景覆盖 3.组织case评审,保证后期的测试执行一致性 4.提测后,测试执行,bug提出,跟进,解决 5.有延期上 ...
分类:
其他好文 时间:
2020-02-10 11:54:40
阅读次数:
103
"题面" 题解 这个数据范围, 直接 DP 一下就完了 看是这个人新开一个圈还是加到别的圈里去 注意, 新开一个圈最少需要三个人 设 $f[i][j]$ 为前 $i$ 个人组成 $j$ 个圈的方案数 $$ f[i][j] = \begin{cases} f[i 1][j] (i 1)\\ f[i 3 ...
分类:
Web程序 时间:
2020-02-09 23:51:45
阅读次数:
135
select Student, sum(case Course when '数学' then Score else null end) 数学, sum(case Course when '物理' then Score else null end) 物理, sum(case Course when ' ...
分类:
数据库 时间:
2020-02-09 18:19:31
阅读次数:
56
# -*- coding: utf-8 -*- import scrapy from ybdlspider.items import YbdlspiderItem import re class YbSpider(scrapy.Spider): name = 'yb' allowed_domains ...
分类:
其他好文 时间:
2020-02-09 09:18:31
阅读次数:
72
一、setDataProfile(apn.modemCognitive->??aosp apn not invoke setDataProfilesAsNeeded??):DcTracker.setDataProfilesAsNeeded ->for (ApnSetting apn : mAllAp ...
分类:
移动开发 时间:
2020-02-09 00:36:23
阅读次数:
191
Python正则表达式指南 本文介绍了Python对于正则表达式的支持,包括正则表达式基础以及Python正则表达式标准库的完整介绍及使用示例。本文的内容不包括如何编写高效的正则表达式、如何优化正则表达式,这些主题请查看其他教程。 注意:本文基于Python2.4完成;如果看到不明白的词汇请记得百度 ...
分类:
编程语言 时间:
2020-02-08 22:03:37
阅读次数:
97
What was the main objective of early mountain climbers? Morden alpinists try to climb mountains by a route which will give them good sport, and the mo ...
分类:
其他好文 时间:
2020-02-08 17:44:18
阅读次数:
73
给定一个三角形,找出自顶向下的最小路径和。每一步只能移动到下一行中相邻的结点上。 法1): 本题典型的回溯算法,但是没有剪枝,在42/43个case的时候超时了,以下是代码。 PS:尝试过如果当前和大于全局最小,则停止,但是由于有负数的存在,现在大的值也可以通过-9999成为最小值,剪枝失败。 cl ...
分类:
其他好文 时间:
2020-02-08 17:23:49
阅读次数:
72
时间复杂度O(n) 空间复杂度O(1) 1 #include <cstdio> 2 int main() { 3 int T;scanf("%d",&T); 4 for(int t=1,n,a,l,r,s,L,R,S;t<=T;t++) { 5 scanf("%d",&n),l=L=R=1; 6 f ...
分类:
编程语言 时间:
2020-02-08 15:32:38
阅读次数:
52