You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a concatenation of each word in words exactly once and without any intervening characters.
Example 1:
1 2 3 4 5 6
Input: s = "barfoothefoobarman", words = ["foo","bar"] Output: [0,9] Explanation: Substrings starting at index 0 and 9 are "barfoor" and "foobar" respectively. The output order does not matter, returning [9,0] is fine too.
Example 2:
1 2 3 4
Input: s = "wordgoodgoodgoodbestword", words = ["word","good","best","word"] Output: []
Difficulty: Hard
Code:
1 2 3 4 5
classSolution{ public List<Integer> findSubstring(String s, String[] words){ } }
Given two integers dividend and divisor, divide two integers without using multiplication, division and mod operator.
Return the quotient after dividing dividend by divisor.
The integer division should truncate toward zero.
Example 1:
1 2
Input: dividend = 10, divisor = 3 Output: 3
Example 2:
1 2
Input: dividend = 7, divisor = -3 Output: -2
Note:
Both dividend and divisor will be 32-bit signed integers.
The divisor will never be 0.
Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231, 231 − 1]. For the purpose of this problem, assume that your function returns 231 − 1 when the division result overflows.
Difficulty: Medium
Code:
1 2 3 4 5
classSolution{ publicintdivide(int dividend, int divisor){ } }