原题网址:https://leetcode.com/problems/number-complement/description/ 大意:求一个数的补数,比如,5的二进制是101,1变0,0变1,得到010,010还原十…
分类:LeetCode
LeetCode | 1. Two Sum
题目链接:https://leetcode.com/problems/two-sum/ 题目难度:Easy 题目描述: Given an array of integers, return indices of the …
归并两个已排序数组
已知两个已排序数组,将这两个数组合并为一个排序数组。设a[i]对应数组1的元素,b[j]对应数组2的元素,则a[i],b[j]哪个元素小即将它添加到结果数组中,再将对应指针向前移动,直到遍历所有的元素。 include&…
[LeetCode By Go 76]Add to List 191. Number of 1 Bits
本体不能用go语言写,因此用C语言 题目 Write a function that takes an unsigned integer and returns the number of ’1′ bits …
[LeetCode By Go 106]205. Isomorphic Strings
这个题目思路比较好想,但是边界问题好难搞,测了好多次才成功。 题目 Given two strings s and t, determine if they are isomorphic. Two strings are…
[LeetCode] Majority Element II 求众数之二,Majority Element 求众数,Majority Element 求众数
Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. The algorithm …
[LeetCode] Number of Lines To Write String 写字符串需要的行数
We are to write the letters of a given string S, from left to right into lines. Each line has maxi…
力扣(LeetCode)357
题目地址:https://leetcode-cn.com/probl…题目描述:给定一个非负整数 n,计算各位数字都不同的数字 x 的个数,其中 0 ≤ x < 10的n次方 。 示例: 输入: 2输出…
Leetcode PHP题解--D22 806. Number of Lines To Write String
806. Number of Lines To Write String 题目链接 806. Number of Lines To Write String 题目分析 每行只能容纳100个字符,给定每个字符所占宽度; 计…
LeetCode算法题-Invert Binary Tree
这是悦乐书的第194次更新,第199篇原创 01 看题和准备 今天介绍的是LeetCode算法题中Easy级别的第55题(顺位题号是226)。反转二叉树。例如: 输入: 4 / \ 2 7 / \ / \ 1 3 6 9…
LeetCode: 合并区间
合并区间 题目叙述: 给出一个区间的集合,请合并所有重叠的区间。 示例: 示例1: 输入: [[1,3],[2,6],[8,10],[15,18]] 输出: [[1,6],[8,10],[15,18]] 解释: 区间 […
[LeetCode] Remove Nth Node From End of List 移除链表倒数第N个节点
Given a linked list, remove the nth node from the end of list and return its head. For example, Given l…