最新 最热

LeetCode 0263 - Ugly Number

Write a program to check whether a given number is an ugly number.

2021-08-11
1

LeetCode 0273 - Integer to English Words

Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 2^31 - 1.

2021-08-11
0

LeetCode 0274 - H-Index

Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher’s h-index.

2021-08-11
1

LeetCode 0275 - H-Index II

Given an array of citations sorted in ascending order (each citation is a non-negative integer) of a researcher, write a function to compute the researcher’s h-...

2021-08-11
1

LeetCode 0279 - Perfect Squares

Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, …) which sum to n.

2021-08-11
1

LeetCode 0372 - Super Pow

Your task is to calculate a^b mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array.

2021-08-11
1

LeetCode 0373 - Find K Pairs with Smallest Sums

You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.

2021-08-11
0

LeetCode 0357 - Count Numbers with Unique Digits

Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n.

2021-08-11
1

LeetCode 0338 - Counting Bits

Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their binary representation and return them...

2021-08-11
1

LeetCode 0367 - Valid Perfect Square

Given a positive integer num, write a function which returns True if num is a perfect square else False.

2021-08-11
1