Problem: Given an array of n distinct non-empty strings, you need to generate minimal possible abbreviations for every word following rules below. Beg ...
分类:
其他好文 时间:
2019-01-13 11:01:29
阅读次数:
201
An accordion is a string (yes, in the real world accordions are musical instruments, but let's forget about it for a while) which can be represented a ...
分类:
其他好文 时间:
2019-01-12 14:17:24
阅读次数:
177
POJ 2031 Building a Space Station 猜一个结论两个球体间的最短距离是圆心间距离减去两个球的半径,如果是负数就说明相交。 然后理解了三维上两个点之间的距离怎么求 //#include<bits/stdc++.h> #include<stdio.h> #include<i ...
分类:
其他好文 时间:
2019-01-12 12:08:24
阅读次数:
160
参考https://www.cnblogs.com/mr-wuxiansheng/p/7465988.html ...
分类:
其他好文 时间:
2019-01-11 20:06:31
阅读次数:
188
Given a collection of distinct integers, return all possible permutations. Example: ...
分类:
其他好文 时间:
2019-01-11 17:08:54
阅读次数:
157
题目 链接: "https://leetcode.com/problems/subsets/" Level: Medium Discription: Given a set of distinct integers, nums, return all possible subsets (the po ...
分类:
其他好文 时间:
2019-01-10 22:54:07
阅读次数:
153
A string S of lowercase letters is given. We want to partition this string into as many parts as possible so that each letter appears in at most one p ...
分类:
其他好文 时间:
2019-01-10 21:51:05
阅读次数:
172
ansible概述 Ansible是2013年推出的一款IT自动化和DevOps软件,目前由Redhat已签署Ansible收购协议。其是基于Python研发,糅合了很多老运维工具的优点。实现了批量操作系统配置,批量程序的部署,批量运行命令等功能。 为什么要选择ansible? ? ansible优 ...
分类:
其他好文 时间:
2019-01-08 00:17:31
阅读次数:
210
leetcode例题: 216. Combination Sum III Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be ...
分类:
其他好文 时间:
2019-01-07 10:39:23
阅读次数:
262
MySQL Explain详解 简介 执行计划(query Execution plan) 语法 explain 中的列 expain出来的信息有10列,分别是id,select_type,table、type,partitions,possible_keys,key,key_len,ref,row ...
分类:
数据库 时间:
2019-01-05 19:51:02
阅读次数:
202