搜索结果
查询Tags标签: resultStr,共有 6条记录-
javascript中的字符串首字母转大写,字符串反转
// 字符串首字母转大写,后面字母小写 /*** 方法一:js字符串切割* @param {*} str */ function firstToUpper1(str) {return str.trim().toLowerCase().replace(str[0], str[0].toUpperCase()); } /*** 方法二:js正则* @param {*} str */ function firstToUpper2(str){r…
2021/11/8 22:12:29 人评论 次浏览 -
javascript中的字符串首字母转大写,字符串反转
// 字符串首字母转大写,后面字母小写 /*** 方法一:js字符串切割* @param {*} str */ function firstToUpper1(str) {return str.trim().toLowerCase().replace(str[0], str[0].toUpperCase()); } /*** 方法二:js正则* @param {*} str */ function firstToUpper2(str){r…
2021/11/8 22:12:29 人评论 次浏览 -
python算法与数据结构DAY01-----最全注释版
python算法与数据结构DAY01(最全注释) 栈 基础 满足LIFO(last-in-first-out,后进先出)具有反转特性 案例 匹配括号 """ 对于给定((())()())来判断括号是否匹配 """ from pythonds.basic import Stack a = ((())()()()) s = Stac…
2021/11/3 22:10:00 人评论 次浏览 -
python算法与数据结构DAY01-----最全注释版
python算法与数据结构DAY01(最全注释) 栈 基础 满足LIFO(last-in-first-out,后进先出)具有反转特性 案例 匹配括号 """ 对于给定((())()())来判断括号是否匹配 """ from pythonds.basic import Stack a = ((())()()()) s = Stac…
2021/11/3 22:10:00 人评论 次浏览 -
Leetcode No.67 Add Binary二进制求和(c++实现)
1. 题目 1.1 英文题目 Given two binary strings a and b, return their sum as a binary string. 1.2 中文题目 给定两个二进制字符串,返回他们的和(用二进制表示)。输入为非空字符串且只包含数字 1 和 0。 1.3输入输出输入 输出a = "11", b = "1"…
2021/7/31 9:06:43 人评论 次浏览 -
Leetcode No.67 Add Binary二进制求和(c++实现)
1. 题目 1.1 英文题目 Given two binary strings a and b, return their sum as a binary string. 1.2 中文题目 给定两个二进制字符串,返回他们的和(用二进制表示)。输入为非空字符串且只包含数字 1 和 0。 1.3输入输出输入 输出a = "11", b = "1"…
2021/7/31 9:06:43 人评论 次浏览