码迷,mamicode.com
首页 >  
搜索关键字:single number3    ( 5041个结果
设计模式之单例模式
一、概念 JVM中,单例对象只有一个实例存在。 二、饿汉式实现 public class Singleton { private static Singleton instance = new Singleton(); private Singleton() { } public static Si ...
分类:其他好文   时间:2020-07-24 09:45:07    阅读次数:76
腾讯云短息验证码接口
一、腾讯云短信服务申请流程 1、注册一个微信公众号(选订阅号,目前只有该方式无需提供社会资质),主页截图。 2、注册并登录腾讯云(需要用到公众号主页截图):https://console.cloud.tencent.com/,选择短信业务,购买套餐包(可免费领取)。 3、创建签名模板(需要审核)。 ...
分类:其他好文   时间:2020-07-23 23:03:57    阅读次数:116
LinkedList源码解析-Java8
目录 一.LinkedList介绍 二.LinkedList源码解析 2.1 链表元素类型-Node 2.2 重要的属性 2.3 构造方法 2.4 获取元素 2.4.1 getFirst和getLast 2.4.2 get 2.5 添加元素 2.5.1 add 2.5.2 addFirst和addL ...
分类:编程语言   时间:2020-07-19 17:46:23    阅读次数:59
hdu 4283You Are the One
The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The sho ...
分类:其他好文   时间:2020-07-18 00:42:55    阅读次数:89
C. Given Length and Sum of Digits... (贪心)
https://codeforces.com/problemset/problem/489/C C. Given Length and Sum of Digits... You have a positive integer m and a non-negative integer s. Your ...
分类:其他好文   时间:2020-07-17 22:18:10    阅读次数:71
docker常见项目
ELK docker pull elasticsearch:6.7.1docker pull kibana:6.7.1docker pull logstash:6.7.1docker run -itd --name elasticsearch6.7.1 -p 9200:9200 -p 9300:93 ...
分类:其他好文   时间:2020-07-17 19:41:08    阅读次数:58
leetcode260 Single Number III
260 Single Number III Given an array of numbers nums, in which exactly two elements appear only once and all the other elements appear exactly twice. ...
分类:其他好文   时间:2020-07-14 21:54:31    阅读次数:104
Python中 将sqlalchemy中查询结果转换为字典
class MixToJson: def single_to_dict(self): return {c.name: getattr(self, c.name) for c in self.__table__.columns} def dobule_to_dict(self): result = { ...
分类:数据库   时间:2020-07-13 18:35:22    阅读次数:132
volumetric rendering ---fog/ light/cloud
local volumetric fog https://www.youtube.com/watch?v=Xd7-rTzfmCo 18:35 https://developer.nvidia.com/sites/default/files/akamai/gameworks/downloads/pap ...
分类:其他好文   时间:2020-07-13 11:41:42    阅读次数:64
keras+resnet实现车牌识别
1.使用PIL和opencv生成车牌图像数据 from PIL import ImageFont,Image,ImageDraw import cv2 import numpy as np import os from math import * #创建 生成车牌图像数据 的类 index = {" ...
分类:Web程序   时间:2020-07-12 14:01:31    阅读次数:89
5041条   上一页 1 ... 9 10 11 12 13 ... 505 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!