码迷,mamicode.com
首页 >  
搜索关键字:example    ( 17798个结果
选择框脚本_添加/删除选项 P434
<!DOCTYPE html> <html> <head> <title>Selectbox Example</title> <script type="text/javascript" src="EventUtil.js"></script> </head> <body> <form method ...
分类:其他好文   时间:2020-08-02 16:17:01    阅读次数:107
leetcode104:permutations
题目描述 给出一组数字,返回该组数字的所有排列 例如: [1,2,3]的所有排列如下 [1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2], [3,2,1]. (以数字在数组中的位置靠前为优先级,按字典序排列输出。) Given a collection of number ...
分类:其他好文   时间:2020-08-01 21:38:13    阅读次数:111
leetcode 38:path-sum
题目描述 给定一个二叉树和一个值sum,判断是否有从根节点到叶子节点的节点值之和等于sum的路径, 例如: 给出如下的二叉树,sum=22, 5 / \ 4 8 / / \ 11 13 4 / \ \ 7 2 1 返回true,因为存在一条路径5->4->11->2的节点值之和为22 Given a ...
分类:其他好文   时间:2020-08-01 12:30:47    阅读次数:70
rsync支持断点续传文件
参考:https://my.oschina.net/ccLlinux/blog/1859116基本命令:rsync[OPTION]…SRC(需要备份的原文件)DEST(Push的位置)example:download:rsync-avuser@hostip:/scratch/test/test_sh.sh/Users/username/test/test.sh上传:rsync-av/Users/u
分类:其他好文   时间:2020-07-30 22:22:12    阅读次数:96
如何用tensorflow实现MLP
""" Multilayer Perceptron. A Multilayer Perceptron (Neural Network) implementation example using TensorFlow library. This example is using the MNIST d ...
分类:其他好文   时间:2020-07-30 14:32:23    阅读次数:68
线程池工作流程-验证
线程池工作流程: 1、如果正在运行的线程数量小于 corePoolSize,那么马上创建线程运行这个任务 2、如果正在运行的线程数量大于或等于 corePoolSize,那么将这个任务放入队列 3、如果这时候队列满了,而且正在运行的线程数量小于 maximumPoolSize,那么还是要创建非核心线 ...
分类:编程语言   时间:2020-07-29 00:47:33    阅读次数:96
712. Minimum ASCII Delete Sum for Two Strings
Given two strings s1, s2, find the lowest ASCII sum of deleted characters to make two strings equal. Example 1: Input: s1 = "sea", s2 = "eat" Output: ...
分类:其他好文   时间:2020-07-28 14:45:21    阅读次数:310
子域名收集及其利用方式
0x01简介子域名(或子域;英语:Subdomain)是在域名系统等级中,属于更高一层域的域。比如,mail.example.com和calendar.example.com是example.com的两个子域,而example.com则是顶级域.com的子域。例如:子域名就是指顶级域名的下一级,比如http://a.com是个顶级域名,http://bbs.a.com、http://mail.a.
分类:其他好文   时间:2020-07-27 10:02:39    阅读次数:192
在spring boot 项目中使用thymeleaf模板;小案例
准备MySql数据库,表Prereg,IDEA数据库中的表如下所示: IDEA目录结构如下: 添加thymeleaf依赖: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter ...
分类:编程语言   时间:2020-07-26 23:07:46    阅读次数:86
[LeetCode] 954. Array of Doubled Pairs 两倍数对儿数组
Given an array of integers A with even length, return true if and only if it is possible to reorder it such that A[2 * i + 1] = 2 * A[2 * i] for every ...
分类:编程语言   时间:2020-07-26 19:14:18    阅读次数:72
17798条   上一页 1 ... 20 21 22 23 24 ... 1780 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!