码迷,mamicode.com
首页 >  
搜索关键字:uppercase    ( 435个结果
3DES双倍长加密
结果与DES算法工具一致 import java.security.SecureRandom; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.SecretKeyFactory; impor ...
分类:其他好文   时间:2018-06-14 15:09:02    阅读次数:220
A - Word
Problem description Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent a ...
分类:其他好文   时间:2018-06-10 11:44:11    阅读次数:177
leetcode-409-Longest Palindrome(统计字母出现次数)
题目描述: Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters ...
分类:其他好文   时间:2018-06-07 19:18:44    阅读次数:170
记一次spring里bean无法注入的历程
应用启动的时候失败,看了下异常,是这个 NoUniqueBeanDefinitionException。 大家都知道,这是因为有俩个类型相同的实例,在被注入的时候,spring不知道该用哪个。 但是,我们都知道,一个向spring注册的bean,他的名字默认是这个类的shortclassname,然 ...
分类:编程语言   时间:2018-05-25 19:22:12    阅读次数:160
css 设置英文字母大小写转换(text-transform)
css 设置英文字母大小写转换 CreateTime--2018年5月25日07点16分 Author:Marydon 1.实现:通过text-transform实现 2.text-transform语法: text-transform : none | capitalize | uppercase ...
分类:Web程序   时间:2018-05-25 11:03:43    阅读次数:291
Angular 快速学习笔记(1)
1. 创建组件 ng generate component heroes 2. {{ hero.name }} {{}}语法绑定数据 3. 管道pipe 格式化数据 {{ hero.name | uppercase }} Details 4. [(ngModel)] 双向绑定,form需要引入For ...
分类:其他好文   时间:2018-05-21 12:25:17    阅读次数:314
js变量
变量 存储数据的容器,存在变量的数据可以改变。 变量的声明 es5: var a; es6: let a; 初始化 let a =123; 初始化 a =456; 变量赋值 变量声明的问题 重复声明 es5: var a = 1; var a = 3; console.log(a);会是3,后面会覆 ...
分类:Web程序   时间:2018-05-20 11:38:14    阅读次数:224
*LeetCode--Goat Latin
Goat Latin A sentence S is given, composed of words separated by spaces. Each word consists of lowercase and uppercase letters only. We would like to ...
分类:其他好文   时间:2018-05-20 10:39:54    阅读次数:184
random模块&string模块
random模块 程序中有很多地方需要用到随机字符,比如登录网站的随机验证码,通过random模块可以很容易生成随机字符串 random.randrange(1,10) #返回1-10之间的一个随机数,不包括10 random.randint(1,10) #返回1-10之间的一个随机数,包括10 r ...
分类:其他好文   时间:2018-05-16 13:09:18    阅读次数:141
ios下表单post使用gzip模式
使用afnetworking,服务器参考的这里 ios端,使用自己的序列化类 h文件 关键代码,参考AFJSONRequestSerializer ...
分类:移动开发   时间:2018-05-10 17:10:42    阅读次数:481
435条   上一页 1 ... 15 16 17 18 19 ... 44 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!