题目地址:https://leetcode.com/problems/prime-number-of-set-bits-in-binary-representation/description/ 大意:判断一个整数转化为…
标签:LeetCode
68. Text Justification
Hard 也是太messy的一道题了, discussion里面有一个post还是蛮有意思的,讨论这道题的意义:What does this question aim to teach? 今日最佳: it teaches…
[Leetcode]8. 字符串转换整数 (atoi)
题目描述: 请你来实现一个 atoi 函数,使其能将字符串转换成整数。 首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。 当我们寻找到的第一个非空字符为正或者负号时,则将该符号与之后面尽可…
LeetCode刷题之Reverse Linked List
Problem Reverse a singly linked list. Hint: A linked list can be reversed either iteratively or recursively. C…
LeetCode 3. Longest Substring Without Repeating Characters
题目 给定一个字符串,请找出其中无重复字符的最长子字符串。 样例 例如,在”abcabcbb”中,其无重复字符的最长子字符串是”abc”,其长度为 3。 对于,”…
277. Find the Celebrity
Problem Suppose you are at a party with n people (labeled from 0 to n - 1) and among them, there may exist one…
[剑指offer] 字符串的排列
本文首发于我的个人博客:尾尾部落 题目描述 输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。 …
LeetCode-557. Reverse Words in a String III
问题描述 Given a string, you need to reverse the order of characters in each word within a sentence while still pr…
【LeetCode】- Sort Colors(荷兰国企,颜色分类)
1、题目描述 Given an array with n objects colored red, white or blue, sort them in-place so that objects of the sam…
2018-07-03 12. Integer to Roman
题意:给你一个数字,转换成罗马数字,需要遵循罗马数字排布的一些规则。 解题思路: 思路一:因为9和4比较特殊,其余的就是直接累计,可以把罗马数字分成9,5,4,1的对应表,然后逐一遍历将对应的罗马符号放入该位即可。 cl…
[Leetcode]21. 合并两个有序链表
题目描述: 将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 示例: 输入:1->2->4, 1->3->4 输出:1->1->2->…
[LeetCode][Python]283. Move Zeroes
Given an array nums, write a function to move all 0‘s to the end of it while maintaining the relative or…