地址:https://www.baidu.com/link?url=fJ5P3mDdJxPJPBMMaMXI6rddzPrI892EBzpxZQlF6sTvD1CnfcXu-4xpjLYvfolK&wd=&eqid=87db10e900010a0b000000045e9da0fc 题目描述 On B ...
分类:
其他好文 时间:
2020-04-20 23:21:38
阅读次数:
103
Given n integers, your task is to pick k out of them so that the picked number are minimum when do bitwise “AND” among all of them. For example, there ...
分类:
其他好文 时间:
2020-04-20 11:39:23
阅读次数:
56
通过nmap扫描,只开放了80端口,并且该web服务是基于Joomla搭建: root@kali:~# nmap -A 192.168.74.140 Starting Nmap 7.80 ( https://nmap.org ) at 2020-04-15 10:06 CST Nmap scan r ...
分类:
其他好文 时间:
2020-04-20 00:58:45
阅读次数:
65
要求 楼梯共有n个台阶,每次上一个台阶或两个台阶,一共有多少种上楼梯的方法? 示例 输入:n=3 [1,1,1],[1,2,],[2,1] 输出:n=3 实现 自顶向下(递归) 递归 1 class Solution { 2 3 private: 4 int calcWays(int n){ 5 6 ...
分类:
其他好文 时间:
2020-04-17 09:40:31
阅读次数:
59
一个支付宝小程序在一段时间内只能保留一个 WebSocket 连接 my.connectSocket - 支付宝开放平台 https://opendocs.alipay.com/mini/api/vx19c3 my.connectSocket 更新时间:2020-03-18 14:30:35 创建一 ...
分类:
微信 时间:
2020-04-17 00:45:15
阅读次数:
161
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, m ...
分类:
Web程序 时间:
2020-04-16 15:26:54
阅读次数:
172
import java.util.* class Solution { fun minDepth(root: TreeNode?): Int { if (root == null) { return 0 } var depth = 0 //LinkedList实现了Queue接口,可以用作队列使用 ...
分类:
其他好文 时间:
2020-04-16 15:12:48
阅读次数:
56
最近项目不怎么忙了,因为是安卓项目,所以还是一边做一边学,进度缓慢。公司里面就学习一下安卓开发,回家在研究小程序开发,也挺好的,挺充实。 好久没写博客了,从上一个前端项目完成到现在期间都没怎么踏踏实实的写过代码了,有点不适应。其实在公司里面也有学习一些其他的知识,了解了PHP,Python,安卓开发 ...
分类:
微信 时间:
2020-04-16 00:24:29
阅读次数:
88
说到微信小程序的创立初衷,线下门店绝对是应用的大场景,也符合小程序“用完即走”的理念。从这一两年的发展来看,多个小程序爆款也出自门店小程序,如周黑鸭、星巴克以及奶茶店小程序等等。门店小程序的研发需求和使用需求都很大,下边我们就具体讲讲门店小程序的应用场景及研发过程. 一、场景 场景化消费的同时,用户 ...
分类:
微信 时间:
2020-04-14 20:24:58
阅读次数:
105
Problem : Assume you are an awesome parent and want to give your children some cookies. But, you should give each child at most one cookie. Each child ...
分类:
其他好文 时间:
2020-04-14 18:27:41
阅读次数:
69