码迷,mamicode.com
首页 >  
搜索关键字:a number whose    ( 27532个结果
前端-Vue基础2
1.过滤器 前台通过后台传值,要对后台传过来的变量进行特殊处理,比如根据id转成中文等; 1.1 局部过滤器 局部过滤器只针对一个Vue实例 默认将|左侧count传递给右侧方法 {{count|filterFunc}} 可以传多个参数{{count|filterFunc("test")}} fun ...
分类:其他好文   时间:2020-07-20 00:00:53    阅读次数:88
JavaSE第06篇:IDEA调试工具、阶段案例练习
本篇我们将学习如何使用IDEA调试工具测试程序,调试是我们在软件开发中解决bug的重要手段,是我们必须掌握的,毕竟在企业中,解决问题才是真本事。 另外,我们已经学过JavaSE的基础语法之变量、数据类型、运算符、流程控制、数组等,语法格式是死的,但是未来软件开发的需求是多变的,我们若要提高我们的“编... ...
分类:编程语言   时间:2020-07-19 18:11:09    阅读次数:69
[LeetCode] 312. Burst Balloons
Given n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represented by array nums. You are asked to burst all the balloon ...
分类:其他好文   时间:2020-07-19 18:05:12    阅读次数:68
第三课之Spider(翻译单词)
第三课 - 模块Spider 把英文单词翻译成中文试试看,看不懂的选项,都翻译 Spider选项卡里的Application Login一栏:碰到表单怎么做?改成Automatically submit these credentials(自动提交这些凭证):用户名和密码写一个默认的都是admin ...
分类:其他好文   时间:2020-07-19 16:17:25    阅读次数:111
如何读写excel文件?
需求: Microsoft Excel是目前办公中使用最频繁的软件,其数据格式为xls,xlsx,一种非常常用的电子表格,小学某班成绩,记录在excel文件中: 姓名 语文 数学 外语 李雷 95 99 96 韩梅 98 100 93 张峰 94 95 95 ... 利用python读写excel, ...
分类:其他好文   时间:2020-07-19 16:12:40    阅读次数:70
vue-cli4脚手架搭建三
组件传值 <script> import LunBo from "./LunBo"; export default { name: 'Home', components: {LunBo}, data(){ return { lists:[ {title:'标题1',color:'#ffbb78'}, ...
分类:其他好文   时间:2020-07-19 16:10:52    阅读次数:64
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
Python-闭包
1. 定义:在函数内部再定义一个函数,并且这个函数用到了外边函数的变量,那么将这个函数以及用到的一些变量称之为闭包 def test(number): print(' 1 ') def test_in(): print(' 2 ') print(number+100) print(' 3 ') re ...
分类:编程语言   时间:2020-07-19 11:34:34    阅读次数:46
[HIVE] rank() dense_rank() row_number()的学习
在对数据进行汇总和分析的时候,经常需要用到排名相关的操作,下面是hive中经常用到的3个排名函数: rank() dense_rank() row_number() 函数说明: rank():在一组数据内按顺序显示排名顺序,值相同的情况下,排序数会重复,下个排序数会根据记录数接着排名。 dense_ ...
分类:其他好文   时间:2020-07-19 00:49:43    阅读次数:74
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
27532条   上一页 1 ... 59 60 61 62 63 ... 2754 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!