码迷,mamicode.com
首页 >  
搜索关键字:simple example    ( 24106个结果
MDK,IAR,GCC生成库文件的方法(2020-08-04)
基于V6模板做的库文件以及基于库文件的工程。 库文件生成,含GCC,MDK和IAR GUIX Lib Create.7z (2.55 MB) 基于库文件的工程,可以在我们V6板子上面跑,含MDK,IAR和GCC GUIX Lib Example(MDK, IAR, GCC).7z (4.97 MB) ...
分类:其他好文   时间:2020-08-05 16:54:27    阅读次数:74
xpath选择器的使用
xpath简介 xpath是一门可以在xml文档中查找信息的语言 /: 从根节点选取 //: 不管位置,直接找 /@href 属性名 /text() xpath选择器操作 doc=''' <html> <head> <base href='http://example.com/' /> <title ...
分类:其他好文   时间:2020-08-05 00:06:37    阅读次数:77
选择框脚本_添加/删除选项 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
httprunner测试框架
httprunner测试框架 1、httprunner安装 pip install httprunner -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 2、安装后版本检查 ...
分类:Web程序   时间:2020-07-30 16:42:08    阅读次数:217
如何用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
POJ - 3468 A Simple Problem with Integers
题目链接 线段树区间修改,每个数均加上一个值。区间查询和。 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<string> #include<cmath> using namespa ...
分类:其他好文   时间:2020-07-29 21:42:43    阅读次数:65
添加Django后台验证码的方法
第一步: pip3 install django-multi-captcha-admin django-simple-captcha # 可以直接安装两个模块 第二步:配置settings.py INSTALLED_APPS = [ 'django.contrib.auth', 'django.co ...
分类:其他好文   时间:2020-07-29 17:41:31    阅读次数:77
24106条   上一页 1 ... 34 35 36 37 38 ... 2411 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!