LeetCode之String
文章平均质量分 61
小楼闻夜雨
转:生活最主要的还是感受,坚持是一种刻意的练习,不断寻找缺点突破缺点的过程,而不是重复做某件事情。
展开
-
Add Binary
题目描述 Given two binary strings, return their sum (also a binary string). For example, a = "11" b = "1" Return "100". 思路 主要问题在于两个字符串谁长谁短,短的那个之后就要被看做0.然后就是计算,可以转化为int计算,更简便的是直接用char-'0',(cha原创 2017-07-05 22:27:31 · 187 阅读 · 0 评论 -
LeetCode之Longest Substring Without Repeating Characters
原题描述 3.Longest Substring Without Repeating Characters Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which原创 2017-09-01 10:17:56 · 171 阅读 · 0 评论