码迷,mamicode.com
首页 >  
搜索关键字:c reverse array stri    ( 35258个结果
Codeforces Round #698 (Div. 2)补题
C C. Nezzar and Symmetric Array 题意 原来有2n个数,各不相同,这2n个数中,每个数的相反数也在其中。 Nezzar在100万年前计算出了 每个数与其他数的差值 的和,但忘掉了原来那2n个数。 问从这2n个计算出来的差值和能不能推出一个满足条件的2*n个数。 思路 发 ...
分类:其他好文   时间:2021-02-01 12:34:47    阅读次数:0
01.note
01.note 一.不用pytorch的module模型手写简单的线性问题 1)输入train_data和test_data #1.输入数据集 inputs = np.array([[73, 67, 43], [91, 88, 64], [87, 134, 58], [102, 43, 37], [ ...
分类:其他好文   时间:2021-01-30 12:05:31    阅读次数:0
有约束优化问题
对于一般形式约束优化问题: \[ \begin{array}{cl} \min & f(x) \\ \mathrm{s.t.} & g_i(x) \leq0, \quad i=1,\cdots ,m \\ & h_i(x) = 0, \quad i=1,\cdots ,l \end{array} \ ...
分类:其他好文   时间:2021-01-29 12:20:15    阅读次数:0
QT::自定义事件
自定义事件:鼠标拖动一个图片,原图片变为阴影,图片跟着鼠标用,鼠标放下,图片放下,原图消失。 void mousePressEvent(QMouseEvent *event); //鼠标按下事件 void dragEnterEvent(QDragEnterEvent *event); //拖动进入事 ...
分类:其他好文   时间:2021-01-29 12:17:24    阅读次数:0
es6新增的数组方法
数组创建 Array.of() 将参数中所有值作为元素形成数组。 如: console.log(Array.of(1, 2, 3, true,'www')); // [1, 2, 3, true, 'www'] console.log(Array.of()) //[] Array.from() 将【 ...
分类:编程语言   时间:2021-01-29 12:06:36    阅读次数:0
DVWA-XSS(Reflected-反射型)
难度1-Low 查看代码: <?php // Is there any input? if( array_key_exists( "name", $_GET ) && $_GET[ 'name' ] != NULL ) { // Feedback for end user echo '<pre>He ...
分类:其他好文   时间:2021-01-29 11:44:05    阅读次数:0
php 自定义验证器二:完整验证器
验证器类:Validate.php <?php namespace framework\library; class Validate { /** * 当前验证规则 * @var array */ protected $rule = []; /** * 验证提示信息 * @var array */ ...
分类:Web程序   时间:2021-01-28 11:58:59    阅读次数:0
BUUCTF reverse [ACTF新生赛2020]Universe_final_answer
没有壳,用ida64打开。 查看sub_55B4BF947860函数 这个算法直接没见过,看大佬的wp知道用z3库写。 1 from z3 import * 2 3 s = Solver() 4 v1 = Int('v1') 5 v2 = Int('v2') 6 v3 = Int('v3') 7 v ...
分类:其他好文   时间:2021-01-28 11:57:46    阅读次数:0
【力扣】206. 反转链表
反转一个单链表。 示例: 输入: 1->2->3->4->5->NULL输出: 5->4->3->2->1->NULL进阶:你可以迭代或递归地反转链表。你能否用两种方法解决这道题? 来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/reverse- ...
分类:其他好文   时间:2021-01-27 14:05:27    阅读次数:0
Thinkphp 3.x exp注入(2)
接着上篇来看 https://www.cnblogs.com/cuocuo/p/14329379.html <?php namespace Home\Controller; use Think\Controller; use \Think\Logs; class IndexController ex ...
分类:Web程序   时间:2021-01-27 13:29:47    阅读次数:0
35258条   上一页 1 ... 31 32 33 34 35 ... 3526 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!