码迷,mamicode.com
首页 >  
搜索关键字:numbers    ( 7657个结果
关于hive核心
一、DDL数据定义 1、创建数据库 1)创建一个数据库,数据库在 HDFS 上的默认存储路径是/user/hive/warehouse/*.db。 hive (default)> create database db_hive; 2)避免要创建的数据库已经存在错误,增加 if not exists ...
分类:其他好文   时间:2021-07-26 16:38:58    阅读次数:0
Go 语言数组
Go 语言数组 Go 语言提供了数组类型的数据结构。 数组是具有相同唯一类型的一组已编号且长度固定的数据项序列,这种类型可以是任意的原始类型例如整型、字符串或者自定义类型。 相对于去声明 number0, number1, ..., number99 的变量,使用数组形式 numbers[0], n ...
分类:编程语言   时间:2021-07-12 18:22:21    阅读次数:0
random numbers- to learn english
14,17,24,83,33,21,43,60,20,28,82,88,79,25,15,93,48,76,40,58,95,13,75,66,38,60,18,25,31,89,20,14,58,53,80,58,63,22,92,60,10,25,88,87 950,928,212,880,46 ...
分类:其他好文   时间:2021-07-05 19:05:30    阅读次数:0
1060 Are They Equal (25 分)
If a machine can save only 3 significant digits, the float numbers 12300 and 12358.9 are considered equal since they are both saved as 0 with simple c ...
分类:其他好文   时间:2021-07-02 15:54:07    阅读次数:0
git放弃本地文件修改
写代码时,本来想切换到主分支,但是切换失败,因为我本地的代码修改了,所以想要放弃本地修改的代码(或者有时代码改的乱七八糟想放弃本地修改) 参考:https://www.cnblogs.com/qufanblog/p/7606105.html 1. 未使用git add 缓存代码 使用git chec ...
分类:其他好文   时间:2021-06-24 17:44:11    阅读次数:0
Python学习(二)
操作列表 遍历列表 fruits = ['apple','banana','pear'] for fruit in fruits: print(fruit) #缩进表示在循环体内 print('done!') #不缩进是循环体外,避免缩进错误 使用range()创建数字列表 numbers = li ...
分类:编程语言   时间:2021-06-16 18:34:11    阅读次数:0
[LeetCode] 系统刷题9_Backtracking
有待总结。 Binary Search: 633, Sum of Square Numbers 475, Heaters 744, Find Smallest Letter Greater than target(LC submissions from original session) 427?? ...
分类:其他好文   时间:2021-06-13 09:48:38    阅读次数:0
LeetCode 2. Add Two Numbers(两数相加)
LeetCode 2. Add Two Numbers(两数相加) 题目 链接 https://leetcode-cn.com/problems/add-two-numbers 问题描述 给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 ...
分类:其他好文   时间:2021-06-06 18:53:03    阅读次数:0
619.只出现一次的最大数字【当表格为空时,如何返回null值】
空表示表格没有任何输出,null表示输出为null。 #方法一select sum(num)from( select num from my_numbers group by num having count(num)=1 order by num desc limit 0,1); #方法二sele ...
分类:其他好文   时间:2021-06-05 18:19:31    阅读次数:0
Python库
excel xlsxwriter XlsxWriter is a Python module that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 200 ...
分类:编程语言   时间:2021-06-02 20:53:25    阅读次数:0
7657条   1 2 3 4 ... 766 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!