LeetCode 0409. Longest Palindrome最长回文串【Easy】【Python】【字符串】 Problem "LeetCode" Given a string which consists of lowercase or uppercase letters, find the ...
分类:
编程语言 时间:
2020-03-19 21:26:18
阅读次数:
69
1.字符串的不可变 指的是已经存在的值,看似可以被改变,其实只是变量指向的地址改变了,内存中新开辟了一个内存空间,原来的值并未被抹去。 var str='pink'; str='red'; 首先,内存中开辟了一个内存空间用来存放pink,str指向这个内存地址,当执行到第二句时,内存中开辟了一个新的 ...
分类:
编程语言 时间:
2020-03-12 23:19:53
阅读次数:
60
A palindrome is a symmetrical string, that is, a string read identically from left to right as well as from right to left. You are to write a program ...
分类:
其他好文 时间:
2020-02-02 19:30:50
阅读次数:
72
It may or may not surprise you to know that the bash shell has a very rich array of convenient shortcuts that can make your life, working with the com ...
分类:
系统相关 时间:
2020-01-24 09:24:39
阅读次数:
99
VideLoginForm案例 ~~~html Document Sing In Forget Password ~~~ ~~~css body { margin: 0; padding: 0; width: 100%; height: 100vh; / background: 000; / fon ...
分类:
其他好文 时间:
2020-01-21 23:32:35
阅读次数:
102
例如把RESULT_LIST转化成resultList字符串 第一:通过input.toLowerCase().split(spliter)用‘_’把字符串分割成多个小写字母的数组。 第二:把第一个数组以外的数组首字母变大写。 第三:通过append()拼接字符串。 1 //型如XXX_YYY_ZZ ...
分类:
其他好文 时间:
2020-01-19 16:32:09
阅读次数:
633
题目如下: You have a keyboard layout as shown above in the XY plane, where each English uppercase letter is located at some coordinate, for example, the l ...
分类:
其他好文 时间:
2020-01-17 11:45:26
阅读次数:
67
1.js方法封装 MC.upperCase=function chang(domId){ $(domId).on("input propertychange",function(){ var a=$(this).val(); a=a.toUpperCase(); $(domId).val(a) }) ...
分类:
Web程序 时间:
2020-01-14 17:49:15
阅读次数:
310
/* * A JavaScript implementation of the RSA Data Security, Inc. MD5 Message * Digest Algorithm, as defined in RFC 1321. * Version 2.1 Copyright (C) Pa ...
分类:
Web程序 时间:
2019-12-23 20:42:51
阅读次数:
85
项目需要在后台接收的字段值为小写,但在页面上显示大写英文,但操作页面之后,最终传给后台的依旧是小写,所以就需要使用css转化一下即可 <li>This.is.a.book,全部转为大写:</li> <li style="text-transform: uppercase">This.is.a.boo ...
分类:
Web程序 时间:
2019-12-22 13:02:44
阅读次数:
121