Unique Paths A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move either down or r ...
分类:
其他好文 时间:
2020-01-21 18:21:24
阅读次数:
105
如题,利用C语言的GetCursorPos函数实现. 示例: #include <bits/stdc++.h> #include <windows.h> #include <conio.h> int main(){ long x, y; POINT pt = {0, 0}; LPPOINT xy = ...
分类:
编程语言 时间:
2020-01-20 14:44:27
阅读次数:
261
部署环境 $ kubectl get node NAME STATUS ROLES AGE VERSION master01 Ready master 13d v1.14.0 master02 Ready master 13d v1.14.0 master03 Ready master 13d v1 ...
分类:
其他好文 时间:
2020-01-20 12:51:39
阅读次数:
86
1. 根据 单元格的位置字符串,得到所在的行和列; 例如 “A2”-第一行第二列 // 数据开始行,列 String startDataCell = "A2"; CellReference cellReference = new CellReference(startDataCell); int d ...
分类:
其他好文 时间:
2020-01-20 12:47:13
阅读次数:
87
XML: <?xml version="1.0" encoding="iso-8859-1" ?> <results> <result> <ip>111.93.167.67</ip> <host /> <isp>Tata Teleservices ISP</isp> <org>Tata Telese ...
分类:
其他好文 时间:
2020-01-19 19:02:29
阅读次数:
75
一,我们新建.NET Core 3.0的API项目 二,neget包Swashbuckle.AspNetCore 三,修改Startup文件 public void ConfigureServices(IServiceCollection services) { services.AddContro ...
前言 Java是一门面向对象的优秀编程语言,市场占有率极高,但是在容器化实践过程中,发现官方支持并不友好,同时与其他编程语言的基础镜像相比(具体见各语言镜像比较),确实是非常臃肿。 本篇仅作探索,希望对大家有所帮助。 目录 Java 官方镜像 各语言镜像比较 使用Docker搭建Java开发环境 编 ...
分类:
其他好文 时间:
2020-01-19 12:30:50
阅读次数:
78
今天运行程序的时候遇到了下面这个bug 1> B1020.cpp 1>e:\vs2013\vs2013_rtm_ult_chs\data\vc\include\xutility(371): error C2825: '_Iter': 当后面跟“::”时必须为类或命名空间 1> e:\vs2013\v ...
分类:
其他好文 时间:
2020-01-18 12:24:33
阅读次数:
220
原题链接在这里:https://leetcode.com/problems/campus-bikes-ii/ 题目: On a campus represented as a 2D grid, there are N workers and M bikes, with N <= M. Each wo ...
分类:
其他好文 时间:
2020-01-17 09:23:42
阅读次数:
104