码迷,mamicode.com
首页 >  
搜索关键字:le ge lt gt eq ne    ( 256714个结果
Python:获取某一月的天数
import calendar >>> calendar.monthrange(2010,10)[1] 31 >>> calendar.monthrange(2020,3) (6, 31) calendar.monthrange( year , month ) 返回一个tuple,第一个元素是这个月 ...
分类:编程语言   时间:2021-06-08 23:21:11    阅读次数:0
Windows10 从零搭建 Hadoop/Hive 环境及 Hive 入门
1. Hadoop 概览Google 三篇论文(GFS -> HDFS,Map-Reduce -> MR,BigTable -> HBase)是 Hadoop 的思想之源。Hadoop 生态非常庞大,其最初两大核心是 HDFS 和 MR,分别负责存储和计算(Hadoop 1.x 中,MR 既负责计算 ...
分类:Windows程序   时间:2021-06-08 23:15:13    阅读次数:0
解决Newtonsoft.Json版本问题
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30AD ...
分类:Web程序   时间:2021-06-08 23:12:21    阅读次数:0
c语言获取当前日期和时间
1、 #include <stdio.h> #include <time.h> // time_t数据类型,日历时间头文件 int main(void) { time_t current = time(NULL); // 利用time函数获取日历时间(返回1970之后的秒数,整型) struct t ...
分类:编程语言   时间:2021-06-08 23:04:50    阅读次数:0
三数之和
三数之和题目入口 方法一:暴力法,三重for循环,枚举所有的三数组合,时间复杂度为O(\(n^3\)),因为时间复杂度过高,已经TLE了,所以对结果集不作去重处理了,此方法不可以通过 public List<List<Integer>> threeSum(int[] nums) { int len ...
分类:其他好文   时间:2021-06-08 23:03:35    阅读次数:0
vue 组件之间传值(父传子,子传父)
1.父传子 基本就用一个方式,props Father.vue(用v-bind(简写 : ) 将父组件传的值绑定到子组件上) <template> <div> 我是爸爸:{{message}} <hr> <Son :toSonData="toSonData"></Son> </div></templ ...
分类:其他好文   时间:2021-06-08 22:56:30    阅读次数:0
Pycharm中文版
1.查看Pycharm版本: help->about 2.打开中文插件的下载地址(https://plugins.jetbrains.com/plugin/13710-chinese-simplified-language-pack-eap/versions) 3.下载Pycharm对应版本(Pyc ...
分类:其他好文   时间:2021-06-08 22:56:11    阅读次数:0
C#根据数据生成力引导图
效果: public class Rootobject { public Node[] nodes { get; set; } public Link[] links { get; set; } public Category[] categories { get; set; } } /// <su ...
分类:Windows程序   时间:2021-06-08 22:54:16    阅读次数:0
occ include
#include <BRepTools.hxx> #include <Standard_DefineHandle.hxx> #include <DsgPrs_LengthPresentation.hxx> #include <GCPnts_TangentialDeflection.hxx> #inc ...
分类:其他好文   时间:2021-06-08 22:52:38    阅读次数:0
20210607--《程序员面试金典》刷题(一)
1.实现一个算法,确定一个字符串 s 的所有字符是否全都不同。 示例 1: 输入: s = "leetcode"输出: false 示例 2: 输入: s = "abc"输出: true限制: 0 <= len(s) <= 100如果你不使用额外的数据结构,会很加分 先以人类的思路分析,1和2-8比 ...
分类:其他好文   时间:2021-06-08 22:52:13    阅读次数:0
256714条   上一页 1 ... 79 80 81 82 83 ... 25672 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!