本文首发于个人博客 "https://kezunlin.me/post/12ab5707/" ,欢迎阅读! cmake with user defined entry Guide FindXXX.cmake in CMAKE_MODULE_PATH xxx config.cmake in CMAKE ...
分类:
其他好文 时间:
2019-11-12 11:01:24
阅读次数:
92
有过迷茫的阶段独自走在回家的街上,当我发现路还离我很远现在依然是像当初那么渴望 elementUI实现关键字搜索 运用的elementUI选择器中的远程搜索功能( 还没有封装,接下来会封装,封装一点点学,不着急 ) 结构 + data: <el-form-item label="登记门店:" pro ...
分类:
其他好文 时间:
2019-11-11 20:04:28
阅读次数:
96
超出时间了。。。 class Solution(object): def countRangeSum(self, nums, lower, upper): """ :type nums: List[int] :type lower: int :type upper: int :rtype: int ...
分类:
其他好文 时间:
2019-11-10 19:22:14
阅读次数:
67
1.python字符串相关操作 s1 = " hello " s2 = " world! " #去除字符串左右两边的空格 s1 = s1.strip() s2 = s2.strip() #拼接字符串 s = s1+s2 #查找字符或子串 s_index = s.index('hello') #字符串 ...
分类:
编程语言 时间:
2019-11-10 15:39:21
阅读次数:
86
二分的情况不同所输出的模板也不同列如下面两个题目 The Frog's Games 代码如下 //二分专练 #include <stdio.h> //lower_bound大于等于它的第一个数 #include <iostream> //upper_bound大于 它的第一个数 #include < ...
分类:
其他好文 时间:
2019-11-10 15:31:34
阅读次数:
76
1.Given a Huffman tree for N (≥2) characters, all with different weights. The weight of any non leaf node must be no less than the weight of any node ...
分类:
编程语言 时间:
2019-11-07 15:06:52
阅读次数:
143
#include <stdio.h>/*当fathr = 0,20,...,300时,分别打印fahr华氏温度与celsius摄氏温度对照表*/main(){ float fahr,celsius; int lower,upper,step; lower = 0;/*温度表的下限*/ upper = ...
分类:
其他好文 时间:
2019-11-06 23:10:23
阅读次数:
112
本文是吴恩达 (Andrew Ng)老师《机器学习》课程,第二章《单变量线性回归》中第6课时《模型概述》的视频原文字幕。为本人在视频学习过程中逐字逐句记录下来以便日后查阅使用。现分享给大家。如有错误,欢迎大家批评指正,在此表示诚挚地感谢!同时希望对大家的学习能有所帮助。 ...
分类:
其他好文 时间:
2019-11-04 17:50:29
阅读次数:
85
严重性 代码 说明 项目 文件 行 禁止显示状态错误 The current .NET SDK does not support targeting .NET Core 3.0. Either target .NET Core 1.1 or lower, or use a version of th ...
分类:
Web程序 时间:
2019-11-04 13:45:58
阅读次数:
131
一、字符串特有 1.upper() / .lower() 将字符串转化为大小写,得到结果是字符串 示例:将输入字符串进行小写比较方式1:check_code = 'AF1k'new_check_code = check_code.lower()print(new_check_code)code = ...
分类:
其他好文 时间:
2019-11-04 13:18:48
阅读次数:
79