All Posts

Leetcode 556: Next Greater Element III

Given a positive integer n, find the smallest integer which can be formed by rearranging the digits of n and is greater than n. If no such integer exists, return -1.

Leetcode 557: Reverse Words in a String III

Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.

Leetcode 567: Permutation in String

Given two strings s1 and s2, return true if s2 contains any permutation of s1 as a substring, otherwise return false. In other words, check if one of the permutations of s1 exists as a substring within s2.

Leetcode 581: Shortest Unsorted Continuous Subarray

Given an integer array, find the shortest continuous subarray such that, if you sort this subarray in non-decreasing order, the whole array will become sorted.

Leetcode 611: Valid Triangle Number

Given an array of integers, return the number of triplets that can form a valid triangle. A valid triangle is formed when the sum of any two sides is greater than the third side.

Leetcode 633: Sum of Square Numbers

Given a non-negative integer c, determine if there exist two non-negative integers a and b such that a^2 + b^2 = c.