关于reverse的水题。基础的。
题目链接:http://erange.heetian.com/CTFrace.html
【1,dex2jar好用】
说是dex2jar好用,就猜到是apk了。改zip,解压出classes.de之后,用dex2jar,再用jd打开。
发现这么一段奇怪的字符数字,直接改成char表示,得到flag。
f l a g { w 4 n n...
分类:
其他好文 时间:
2014-11-22 18:55:33
阅读次数:
218
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.If the number of nodes is not a multiple of k then le...
分类:
其他好文 时间:
2014-11-22 07:04:50
阅读次数:
136
PowerDesigner 反转Java代码生成类图 首先当然是新建一个OOM。 单击Language—>Reverse Engineer Java… 不同的版本,菜单可能不一样,我的是12.5 到了这步当然是选择要反转的java 类了。不过试了蛮久,没找到...
分类:
编程语言 时间:
2014-11-21 20:37:08
阅读次数:
305
DECLARE @s VARCHAR(100)
SET @s='R1-1-1' 获取最后一个“-”之后的数字
select REVERSE(@s) 返回值:1-1-1R 将字符颠倒过来
select LEN(@s) 返回值:6 获取长度
select CHARINDEX('-',REVERSE(@s)) ...
分类:
数据库 时间:
2014-11-21 18:46:31
阅读次数:
374
DECLARE @s VARCHAR(100)
SET @s='R1-1-1' 获取最后一个“-”之后的数字
select REVERSE(@s) 返回值:1-1-1R 将字符颠倒过来
select LEN(@s) 返回值:6 获取长度
select CHARINDEX('-',REVERSE(@s)) ...
分类:
数据库 时间:
2014-11-21 18:46:03
阅读次数:
253
如何将阿拉伯数字每三位一逗号分隔,如:15000000转化为15,000,000"15000000".split("").reverse().join("").replace(/(\d{3})/g, "$1,").split("").reverse().join("");"115000000".sp...
分类:
其他好文 时间:
2014-11-21 18:20:41
阅读次数:
166
题目描述:
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return i...
分类:
其他好文 时间:
2014-11-21 12:42:05
阅读次数:
241
Evaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another express...
分类:
其他好文 时间:
2014-11-21 12:15:28
阅读次数:
149
Evaluate Reverse Polish NotationEvaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may ...
分类:
其他好文 时间:
2014-11-20 20:11:18
阅读次数:
177
Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click to show clarification.Cl...
分类:
其他好文 时间:
2014-11-20 11:53:36
阅读次数:
206