需要引入jquery和bootstrap相关包,然后把下面的代码复制进去就可以了: <div class="modal fade" id="loadingModal" backdrop="static" keyboard="false"> <div style="width: 200px;heigh ...
分类:
Web程序 时间:
2017-03-23 02:12:20
阅读次数:
563
public class ReadFromKB{ public static void main(String args[]) { try { byte bArray[]=new byte[128]; String str; System.out.println("Enter something U ...
分类:
编程语言 时间:
2017-03-19 11:54:01
阅读次数:
162
public class MainActivityInstrumentationTest { private static final String STRING_TO_BE_TYPED = "peter"; @Rule public ActivityTestRule<MainActivity> m ...
分类:
其他好文 时间:
2017-03-17 15:01:28
阅读次数:
167
原文: http://www.tuicool.com/articles/2E3INnm http://www.secbox.cn/hacker/ctf/8078.html 0x01 目录 常见编码: 各种文本加密 换位加密: 替换加密: 其他有趣的机械密码: 代码混淆加密: 相关工具 参考网站 0x ...
分类:
其他好文 时间:
2017-03-16 16:21:05
阅读次数:
678
1. Title500. Keyboard Row2. Http addresshttps://leetcode.com/problems/keyboard-row/?tab=Description3. The question Given a List of words, return the w ...
分类:
其他好文 时间:
2017-03-07 20:25:52
阅读次数:
168
题意:给定两个字符串a和b,问有多少种不同的字母组合对,使得将这些字母对替换字符串b后,可以变成字符串a。注意字母对彼此各不相同。 分析:vis[u]记录与u可形成关系的字母,若u与v不同,则形成字母对。若之后该关系被打破,则输出-1。 ...
分类:
其他好文 时间:
2017-03-01 23:16:56
阅读次数:
211
Santa Claus decided to disassemble his keyboard to clean it. After he returned all the keys back, he suddenly realized that some pairs of keys took ea ...
分类:
其他好文 时间:
2017-02-26 23:29:43
阅读次数:
216
Something important to consider when coding a web application is managing the user's focus. For keyboard and screen reader users, we must ensure their ...
分类:
编程语言 时间:
2017-02-23 20:41:10
阅读次数:
155
1 public class Solution { 2 public String[] findWords(String[] words) { 3 List oneRowWords = new ArrayList(); 4 String[] keyboard = {"qwertyuiop","asd... ...
分类:
编程语言 时间:
2017-02-22 11:23:13
阅读次数:
180
Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below. Examp ...
分类:
其他好文 时间:
2017-02-20 22:31:57
阅读次数:
207