题目描述: 输入一个链表,输出该链表中倒数第k个结点。 题目链接:https://www.nowcoder.com/practice/529d3ae5a407492994ad2a246518148a?tpId=13&&tqId=11167&rp=1&ru=/ta/coding-interviews& ...
分类:
其他好文 时间:
2020-07-19 23:26:26
阅读次数:
73
题目描述:输入一个非负整数数组,把数组里所有数字拼接起来排成一个数,打印能拼接出的所有数字中最小的一个。 题目链接:https://www.nowcoder.com/practice/8fecd3f8ba334add803bf2a06af1b993?tpId=13&&tqId=11185&rp=1& ...
分类:
编程语言 时间:
2020-07-19 21:11:24
阅读次数:
85
package LeetCode_122 /** * 122. Best Time to Buy and Sell Stock II * https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/description/ * * ...
分类:
其他好文 时间:
2020-07-19 18:07:26
阅读次数:
79
题目描述 Since you are the best Wraith King, Nizhniy Magazin «Mir» at the centre of Vinnytsia is offering you a discount. You are given an array a a a of ...
分类:
其他好文 时间:
2020-07-19 17:51:34
阅读次数:
56
Vue-router前端路由(2) Vue-router全局导航守卫: 为什么使用导航守卫:(修改网页标题) 网页标题是通过title来显示的,但SPA只有一个固定的HTML,切换组件无法修改title 但我们可以通过JavaScript来修改title的内容:document.title 这时就需 ...
分类:
其他好文 时间:
2020-07-19 16:21:17
阅读次数:
62
1 #!/usr/bin/env python3 2 # coding=utf-8 3 # Version:python3.6.1 4 # Project:practice 5 # File:Car.py 6 # Data:2020/7/13 17:37 7 # Author:LGSP_Harold ...
分类:
编程语言 时间:
2020-07-14 18:39:42
阅读次数:
79
我的需求: select下拉联动,选择模板配置后,字段配置重新获取,此时要清空之前已选的字段 代码: <template> <div> <a-form class="dataForm" :form="form" :label-col="{ span: 5 }" :wrapper-col="{ spa ...
分类:
其他好文 时间:
2020-07-14 18:26:53
阅读次数:
184
Best Automation Testing Tools for 2020 对更快交付高质量软件(或"快速质量")的需求要求组织以敏捷,持续集成(CI)和DevOps方法论来寻找解决方案。测试自动化是这些方面的重要组成部分。最新的《 2018-2019年世界质量报告》表明,测试自动化是实现"快速质 ...
分类:
其他好文 时间:
2020-07-14 13:29:59
阅读次数:
289
link class Solution { public: int n; double eps=1E-6; const int dx[4]={-1,0,1,0}; const int dy[4]={0,1,0,-1}; double getMinDistSum(vector<vector<int>> ...
分类:
其他好文 时间:
2020-07-12 19:05:29
阅读次数:
75
多重继承_相同方法 1 #!/usr/bin/env python3 2 # coding=utf-8 3 # Version:python3.6.1 4 # Project:practice 5 # File:People.py 6 # Data:2020/7/12 12:04 7 # Autho ...
分类:
编程语言 时间:
2020-07-12 14:43:14
阅读次数:
69