Add Digits LeetCode Solution
Given an integer num, repeatedly add all its digits until the result has only one digit, and return it.
Given an integer num, repeatedly add all its digits until the result has only one digit, and return it.
Given n, the number of stones in the heap, return true if you can win the game assuming both you and your friend play optimally, otherwise return false.
Given an input string s and a pattern p, implement regular expression matching with support for ‘.’ and ‘*’ where ‘.’ Matches any single character and ‘*’ Matches zero or more of the preceding element.
Given a string s containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[‘ and ‘]’, determine if the input string is valid.
You are given an array of k linked-lists lists, each linked-list is sorted in ascending order. Merge all the linked-lists into one sorted linked-list and return it.
Given an array of strings words and a width maxWidth, format the text such that each line has exactly maxWidth characters and is fully justified.
Given the head of a singly linked list where elements are sorted in ascending order, convert it to a height-balanced binary search tree.
Given a non-empty array of integers nums, every element appears twice except for one. Find that single one.
Given the heads of two singly linked-lists headA and headB, return the node at which the two lists intersect. If the two linked lists have no intersection at all, return null.
Reverse bits of a given 32 bits unsigned integer.
Given an integer array nums representing the amount of money of each house, return the maximum amount of money you can rob tonight without alerting the police.
Write an algorithm to determine if a number n is happy. Return true if n is a happy number, and false if not.
Given an integer array nums and an integer k, return true if there are two distinct indices i and j in the array such that nums[i] == nums[j] and abs(i – j) <= k.
Given an array nums of size n, return the majority element. The majority element is the element that appears more than [n / 2] times. You may assume that the majority element always exists in the array.
Given an m x n board of characters and a list of strings words, return all words on the board.