摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) 67 把字符串转成整数 题目描述 将一个字符串转换成一个整数,要求不能使用字符串转换整数的库函数。 数值为0或者字符串不是一个合法的数值则返回0 输入描述: 输入一个字符串,包括数字字母符号,可以为空 输出描述: 如果是合法 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) 58 翻转字符串 题目一:翻转单词顺序 牛客最近来了一个新员工Fish,每天早晨总是会拿着一本英文杂志,写些句子在本子上。同事Cat对Fish写的内容颇感兴趣,有一天他向Fish借来翻看,但却读不懂它的意思。例如,“stud 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Reverse Integer Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Output: 321 E 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Reverse String Write a function that takes a string as input and returns the string reversed. Example: Given s = 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) 5 替换空格 题目描述 请实现一个函数,将一个字符串中的空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy。 /* 链接:https://www.nowc 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) 387. First Unique Character in a String Given a string, find the first non-repeating character in it and return 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Rotate Image You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Valid Sudoku Determine if a 9x9 Sudoku board is valid. Only the filled cells need to be validated according to t 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Move Zeroes Given an array nums, write a function to move all 0's to the end of it while maintaining the relativ 阅读全文
摘要:
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Plus One Given a non-empty array of digits representing a non-negative integer, plus one to the integer. The dig 阅读全文