码迷,mamicode.com
首页 >  
搜索关键字:numbers range    ( 16974个结果
如何读写excel文件?
需求: Microsoft Excel是目前办公中使用最频繁的软件,其数据格式为xls,xlsx,一种非常常用的电子表格,小学某班成绩,记录在excel文件中: 姓名 语文 数学 外语 李雷 95 99 96 韩梅 98 100 93 张峰 94 95 95 ... 利用python读写excel, ...
分类:其他好文   时间:2020-07-19 16:12:40    阅读次数:70
计算机网络总结与思考
1,OSI协议、TCP/IP协议以及每层对应的协议 OSI模型,即开放式通信系统互联参考模型(Open System Interconnection) 1,OSI七层协议分别:物理层、数据链路层、网络层、传输层、会话层、表示层、应用层。 2,TCP/IP五层模型的协议:物理层、数据链路层、网络层、传 ...
分类:其他好文   时间:2020-07-19 16:11:52    阅读次数:136
Leetcode: 632. Smallest Range Covering Elements from K Lists
Description You have k lists of sorted integers in ascending order. Find the smallest range that includes at least one number from each of the k lists ...
分类:其他好文   时间:2020-07-19 15:47:40    阅读次数:73
LeetCode 102. 二叉树的层序遍历
给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节点)。 示例: 二叉树:[3,9,20,null,null,15,7], 3 / \ 9 20 / \ 15 7 返回其层次遍历结果: [ [3], [9,20], [15,7] ] class Solution( ...
分类:其他好文   时间:2020-07-19 13:49:57    阅读次数:77
nginx实现range请求
前提条件:nginx支持ngx_http_slice_module模块 配置文件示例: #location 块的配置: location /asd/ { slice 512k; proxy_cache cache; proxy_cache_key $uri$is_args$args$slice_ra ...
分类:其他好文   时间:2020-07-19 00:50:36    阅读次数:186
1060. Missing Element in Sorted Array
package LeetCode_1060 /** * 1060. Missing Element in Sorted Array * (Prime) * Given a sorted array A of unique numbers, find the K-th missing number s ...
分类:其他好文   时间:2020-07-19 00:49:27    阅读次数:93
RN(移动端)编辑文章、插入图片 的 简单富文本
1.事件(onkeydown、onkeypress onkeyup onchange)总结的很好 https://blog.csdn.net/wenqiang612/article/details/73139620 2. 理解 range对象(明天早上看) https://www.cnblogs.c ...
分类:移动开发   时间:2020-07-19 00:36:44    阅读次数:124
mininet对象添加带外管理
for i in range(1, 4+1): name = 'r%s' % i eth0 = { 'mac' : '00:00:00:00:0%s:01' % i, 'ipAddrs' : ['10.0.%s.1/24' % i] } eth1 = { 'ipAddrs' : ['192.168. ...
分类:Web程序   时间:2020-07-18 22:53:30    阅读次数:92
Python : TypeError: 'int' object is not iterable
用循环依次对list中的每个名字打印出 Hello, xxx! L = ['Bart', 'Lisa', 'Adam']x = len(L) for i in range(x): print('Hello,', L[i]) 此处,若直接使用 for i in x 时,编译报错:TypeError: ...
分类:编程语言   时间:2020-07-18 22:45:27    阅读次数:95
C# 8中的范围类型(Range Type)
//语法糖Rangestatic void Main(string[] args) { var myArray = new string[] { "Item1", "Item2", "Item3", "Item4", "Item5" }; for(int i=1; i <= 3; i++) { Co ...
分类:Windows程序   时间:2020-07-18 22:10:21    阅读次数:65
16974条   上一页 1 ... 45 46 47 48 49 ... 1698 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!