Skip to content

Commit 582ff1d

Browse files
author
Shuo
authored
Merge pull request #692 from openset/develop
Add: new
2 parents 5b810d6 + 6724d5b commit 582ff1d

File tree

32 files changed

+490
-37
lines changed

32 files changed

+490
-37
lines changed

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ LeetCode Problems' Solutions
6262

6363
| # | Title | Solution | Difficulty |
6464
| :-: | - | - | :-: |
65+
| <span id="1240">1240</span> | [Tiling a Rectangle with the Fewest Squares](https://leetcode.com/problems/tiling-a-rectangle-with-the-fewest-squares "铺瓷砖") | [Go](https://github.com/openset/leetcode/tree/master/problems/tiling-a-rectangle-with-the-fewest-squares) | Hard |
66+
| <span id="1239">1239</span> | [Maximum Length of a Concatenated String with Unique Characters](https://leetcode.com/problems/maximum-length-of-a-concatenated-string-with-unique-characters "串联字符串的最大长度") | [Go](https://github.com/openset/leetcode/tree/master/problems/maximum-length-of-a-concatenated-string-with-unique-characters) | Medium |
67+
| <span id="1238">1238</span> | [Circular Permutation in Binary Representation](https://leetcode.com/problems/circular-permutation-in-binary-representation "循环码排列") | [Go](https://github.com/openset/leetcode/tree/master/problems/circular-permutation-in-binary-representation) | Medium |
68+
| <span id="1237">1237</span> | [Find Positive Integer Solution for a Given Equation](https://leetcode.com/problems/find-positive-integer-solution-for-a-given-equation "找出给定方程的正整数解") | [Go](https://github.com/openset/leetcode/tree/master/problems/find-positive-integer-solution-for-a-given-equation) | Easy |
6569
| <span id="1236">1236</span> | [Web Crawler](https://leetcode.com/problems/web-crawler) 🔒 | [Go](https://github.com/openset/leetcode/tree/master/problems/web-crawler) | Medium |
6670
| <span id="1235">1235</span> | [Maximum Profit in Job Scheduling](https://leetcode.com/problems/maximum-profit-in-job-scheduling "规划兼职工作") | [Go](https://github.com/openset/leetcode/tree/master/problems/maximum-profit-in-job-scheduling) | Hard |
6771
| <span id="1234">1234</span> | [Replace the Substring for Balanced String](https://leetcode.com/problems/replace-the-substring-for-balanced-string "替换子串得到平衡字符串") | [Go](https://github.com/openset/leetcode/tree/master/problems/replace-the-substring-for-balanced-string) | Medium |
@@ -71,9 +75,9 @@ LeetCode Problems' Solutions
7175
| <span id="1230">1230</span> | [Toss Strange Coins](https://leetcode.com/problems/toss-strange-coins "抛掷硬币") 🔒 | [Go](https://github.com/openset/leetcode/tree/master/problems/toss-strange-coins) | Medium |
7276
| <span id="1229">1229</span> | [Meeting Scheduler](https://leetcode.com/problems/meeting-scheduler "安排会议日程") 🔒 | [Go](https://github.com/openset/leetcode/tree/master/problems/meeting-scheduler) | Medium |
7377
| <span id="1228">1228</span> | [Missing Number In Arithmetic Progression](https://leetcode.com/problems/missing-number-in-arithmetic-progression "等差数列中缺失的数字") 🔒 | [Go](https://github.com/openset/leetcode/tree/master/problems/missing-number-in-arithmetic-progression) | Easy |
74-
| <span id="1227">1227</span> | [Airplane Seat Assignment Probability](https://leetcode.com/problems/airplane-seat-assignment-probability) | [Go](https://github.com/openset/leetcode/tree/master/problems/airplane-seat-assignment-probability) | Medium |
75-
| <span id="1226">1226</span> | [The Dining Philosophers](https://leetcode.com/problems/the-dining-philosophers) | [Go](https://github.com/openset/leetcode/tree/master/problems/the-dining-philosophers) | Medium |
76-
| <span id="1225">1225</span> | [Report Contiguous Dates](https://leetcode.com/problems/report-contiguous-dates) 🔒 | [MySQL](https://github.com/openset/leetcode/tree/master/problems/report-contiguous-dates) | Hard |
78+
| <span id="1227">1227</span> | [Airplane Seat Assignment Probability](https://leetcode.com/problems/airplane-seat-assignment-probability "飞机座位分配概率") | [Go](https://github.com/openset/leetcode/tree/master/problems/airplane-seat-assignment-probability) | Medium |
79+
| <span id="1226">1226</span> | [The Dining Philosophers](https://leetcode.com/problems/the-dining-philosophers "哲学家进餐") | [Go](https://github.com/openset/leetcode/tree/master/problems/the-dining-philosophers) | Medium |
80+
| <span id="1225">1225</span> | [Report Contiguous Dates](https://leetcode.com/problems/report-contiguous-dates "报告系统状态的连续日期") 🔒 | [MySQL](https://github.com/openset/leetcode/tree/master/problems/report-contiguous-dates) | Hard |
7781
| <span id="1224">1224</span> | [Maximum Equal Frequency](https://leetcode.com/problems/maximum-equal-frequency "最大相等频率") | [Go](https://github.com/openset/leetcode/tree/master/problems/maximum-equal-frequency) | Hard |
7882
| <span id="1223">1223</span> | [Dice Roll Simulation](https://leetcode.com/problems/dice-roll-simulation "掷骰子模拟") | [Go](https://github.com/openset/leetcode/tree/master/problems/dice-roll-simulation) | Medium |
7983
| <span id="1222">1222</span> | [Queens That Can Attack the King](https://leetcode.com/problems/queens-that-can-attack-the-king "可以攻击国王的皇后") | [Go](https://github.com/openset/leetcode/tree/master/problems/queens-that-can-attack-the-king) | Medium |

problems/airplane-seat-assignment-probability/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
[Next >](https://github.com/openset/leetcode/tree/master/problems/missing-number-in-arithmetic-progression "Missing Number In Arithmetic Progression")
1111

12-
## [1227. Airplane Seat Assignment Probability (Medium)](https://leetcode.com/problems/airplane-seat-assignment-probability "")
12+
## [1227. Airplane Seat Assignment Probability (Medium)](https://leetcode.com/problems/airplane-seat-assignment-probability "飞机座位分配概率")
1313

1414
<p><code data-stringify-type="code">n</code>&nbsp;passengers board an airplane with exactly&nbsp;<code data-stringify-type="code">n</code>&nbsp;seats. The first passenger has lost the ticket and picks a seat randomly. But after that, the rest of passengers will:</p>
1515

@@ -44,9 +44,9 @@
4444
</ul>
4545

4646
### Related Topics
47+
[[Brainteaser](https://github.com/openset/leetcode/tree/master/tag/brainteaser/README.md)]
4748
[[Math](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]
4849
[[Dynamic Programming](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]
49-
[[Brainteaser](https://github.com/openset/leetcode/tree/master/tag/brainteaser/README.md)]
5050

5151
### Hints
5252
<details>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<!--|This file generated by command(leetcode description); DO NOT EDIT. |-->
2+
<!--+----------------------------------------------------------------------+-->
3+
<!--|@author openset <[email protected]> |-->
4+
<!--|@link https://github.com/openset |-->
5+
<!--|@home https://github.com/openset/leetcode |-->
6+
<!--+----------------------------------------------------------------------+-->
7+
8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/find-positive-integer-solution-for-a-given-equation "Find Positive Integer Solution for a Given Equation")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/maximum-length-of-a-concatenated-string-with-unique-characters "Maximum Length of a Concatenated String with Unique Characters")
11+
12+
## [1238. Circular Permutation in Binary Representation (Medium)](https://leetcode.com/problems/circular-permutation-in-binary-representation "循环码排列")
13+
14+
<p>Given 2 integers <code>n</code> and <code>start</code>. Your task is return <strong>any</strong> permutation <code>p</code>&nbsp;of <code>(0,1,2.....,2^n -1) </code>such that :</p>
15+
16+
<ul>
17+
<li><code>p[0] = start</code></li>
18+
<li><code>p[i]</code> and <code>p[i+1]</code>&nbsp;differ by only one bit in their binary representation.</li>
19+
<li><code>p[0]</code> and <code>p[2^n -1]</code>&nbsp;must also differ by only one bit in their binary representation.</li>
20+
</ul>
21+
22+
<p>&nbsp;</p>
23+
<p><strong>Example 1:</strong></p>
24+
25+
<pre>
26+
<strong>Input:</strong> n = 2, start = 3
27+
<strong>Output:</strong> [3,2,0,1]
28+
<strong>Explanation:</strong> The binary representation of the permutation is (11,10,00,01).
29+
All the adjacent element differ by one bit. Another valid permutation is [3,1,0,2]
30+
</pre>
31+
32+
<p><strong>Example 2:</strong></p>
33+
34+
<pre>
35+
<strong>Input:</strong> n = 3, start = 2
36+
<strong>Output:</strong> [2,6,7,5,4,0,1,3]
37+
<strong>Explanation:</strong> The binary representation of the permutation is (010,110,111,101,100,000,001,011).
38+
</pre>
39+
40+
<p>&nbsp;</p>
41+
<p><strong>Constraints:</strong></p>
42+
43+
<ul>
44+
<li><code>1 &lt;= n &lt;= 16</code></li>
45+
<li><code>0 &lt;= start&nbsp;&lt;&nbsp;2 ^ n</code></li>
46+
</ul>
47+
48+
### Related Topics
49+
[[Math](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]
50+
51+
### Hints
52+
<details>
53+
<summary>Hint 1</summary>
54+
Use gray code to generate a n-bit sequence.
55+
</details>
56+
57+
<details>
58+
<summary>Hint 2</summary>
59+
Rotate the sequence such that its first element is start.
60+
</details>

problems/duplicate-zeros/README.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,20 @@
5050
### Hints
5151
<details>
5252
<summary>Hint 1</summary>
53-
Iterate through the array backwards. You know whether an integer should be written or not based on how many zeroes are remaining in the array.
53+
This is a great introductory problem for understanding and working with the concept of in-place operations. The problem statement clearly states that we are to modify the array in-place. That does not mean we cannot use another array. We just don't have to return anything.
54+
</details>
55+
56+
<details>
57+
<summary>Hint 2</summary>
58+
A better way to solve this would be without using additional space. The only reason the problem statement allows you to make modifications in place is that it hints at avoiding any additional memory.
59+
</details>
60+
61+
<details>
62+
<summary>Hint 3</summary>
63+
The main problem with not using additional memory is that we might override elements due to the zero duplication requirement of the problem statement. How do we get around that?
64+
</details>
65+
66+
<details>
67+
<summary>Hint 4</summary>
68+
If we had enough space available, we would be able to accommodate all the elements properly. The new length would be the original length of the array plus the number of zeros. Can we use this information somehow to solve the problem?
5469
</details>

problems/find-all-numbers-disappeared-in-an-array/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,19 @@
3333
### Similar Questions
3434
1. [First Missing Positive](https://github.com/openset/leetcode/tree/master/problems/first-missing-positive) (Hard)
3535
1. [Find All Duplicates in an Array](https://github.com/openset/leetcode/tree/master/problems/find-all-duplicates-in-an-array) (Medium)
36+
37+
### Hints
38+
<details>
39+
<summary>Hint 1</summary>
40+
This is a really easy problem if you decide to use additional memory. For those trying to write an initial solution using additional memory, think <b>counters!</b>
41+
</details>
42+
43+
<details>
44+
<summary>Hint 2</summary>
45+
However, the trick really is to not use any additional space than what is already available to use. Sometimes, multiple passes over the input array help find the solution. However, there's an interesting piece of information in this problem that makes it easy to re-use the input array itself for the solution.
46+
</details>
47+
48+
<details>
49+
<summary>Hint 3</summary>
50+
The problem specifies that the numbers in the array will be in the range [1, n] where n is the number of elements in the array. Can we use this information and modify the array in-place somehow to find what we need?
51+
</details>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<!--|This file generated by command(leetcode description); DO NOT EDIT. |-->
2+
<!--+----------------------------------------------------------------------+-->
3+
<!--|@author openset <[email protected]> |-->
4+
<!--|@link https://github.com/openset |-->
5+
<!--|@home https://github.com/openset/leetcode |-->
6+
<!--+----------------------------------------------------------------------+-->
7+
8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/web-crawler "Web Crawler")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/circular-permutation-in-binary-representation "Circular Permutation in Binary Representation")
11+
12+
## [1237. Find Positive Integer Solution for a Given Equation (Easy)](https://leetcode.com/problems/find-positive-integer-solution-for-a-given-equation "找出给定方程的正整数解")
13+
14+
<p>Given a&nbsp;function&nbsp; <code>f(x, y)</code>&nbsp;and a value <code>z</code>, return all positive integer&nbsp;pairs <code>x</code> and <code>y</code> where <code>f(x,y) == z</code>.</p>
15+
16+
<p>The function is constantly increasing, i.e.:</p>
17+
18+
<ul>
19+
<li><code>f(x, y) &lt; f(x + 1, y)</code></li>
20+
<li><code>f(x, y) &lt; f(x, y + 1)</code></li>
21+
</ul>
22+
23+
<p>The function interface is defined like this:&nbsp;</p>
24+
25+
<pre>
26+
interface CustomFunction {
27+
public:
28+
&nbsp; // Returns positive integer f(x, y) for any given positive integer x and y.
29+
&nbsp; int f(int x, int y);
30+
};
31+
</pre>
32+
33+
<p>For custom testing purposes you&#39;re given an integer <code>function_id</code> and a target <code>z</code> as input, where <code>function_id</code> represent one function from an secret internal list, on the examples you&#39;ll know only two functions from the list. &nbsp;</p>
34+
35+
<p>You may return the solutions in any order.</p>
36+
37+
<p>&nbsp;</p>
38+
<p><strong>Example 1:</strong></p>
39+
40+
<pre>
41+
<strong>Input:</strong> function_id = 1, z = 5
42+
<strong>Output:</strong> [[1,4],[2,3],[3,2],[4,1]]
43+
<strong>Explanation:</strong>&nbsp;function_id = 1 means that f(x, y) = x + y</pre>
44+
45+
<p><strong>Example 2:</strong></p>
46+
47+
<pre>
48+
<strong>Input:</strong> function_id = 2, z = 5
49+
<strong>Output:</strong> [[1,5],[5,1]]
50+
<strong>Explanation:</strong>&nbsp;function_id = 2 means that f(x, y) = x * y
51+
</pre>
52+
53+
<p>&nbsp;</p>
54+
<p><strong>Constraints:</strong></p>
55+
56+
<ul>
57+
<li><code>1 &lt;= function_id &lt;= 9</code></li>
58+
<li><code>1 &lt;= z &lt;= 100</code></li>
59+
<li>It&#39;s guaranteed that the solutions of <code>f(x, y) == z</code> will be on the range <code>1 &lt;= x, y &lt;= 1000</code></li>
60+
<li>It&#39;s also guaranteed that <code>f(x, y)</code> will fit in 32 bit signed integer if <code>1 &lt;= x, y &lt;= 1000</code></li>
61+
</ul>
62+
63+
### Related Topics
64+
[[Math](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]
65+
[[Binary Search](https://github.com/openset/leetcode/tree/master/tag/binary-search/README.md)]
66+
67+
### Hints
68+
<details>
69+
<summary>Hint 1</summary>
70+
Loop over 1 ≤ x,y ≤ 1000 and check if f(x,y) == z.
71+
</details>

problems/find-the-celebrity/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,17 @@
1818

1919
### Similar Questions
2020
1. [Find the Town Judge](https://github.com/openset/leetcode/tree/master/problems/find-the-town-judge) (Easy)
21+
22+
### Hints
23+
<details>
24+
<summary>Hint 1</summary>
25+
The best hint for this problem can be provided by the following figure:
26+
27+
<br>
28+
<img src="https://assets.leetcode.com/uploads/2019/10/20/hint_find_celebrity.png" width="700"/>
29+
</details>
30+
31+
<details>
32+
<summary>Hint 2</summary>
33+
Well, if you understood the gist of the above idea, you can extend it to find a candidate that can possibly be a celebrity. Why do we say a "candidate"? That is for you to think. This is clearly a greedy approach to find the answer. However, there is some information that would still remain to be verified without which we can't obtain an answer with certainty. To get that stake in the ground, we would need some more calls to the knows API.
34+
</details>

problems/max-consecutive-ones-iii/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,24 @@ Bolded numbers were flipped from 0 to 1. The longest subarray is underlined.
5959
1. [Longest Repeating Character Replacement](https://github.com/openset/leetcode/tree/master/problems/longest-repeating-character-replacement) (Medium)
6060
1. [Max Consecutive Ones](https://github.com/openset/leetcode/tree/master/problems/max-consecutive-ones) (Easy)
6161
1. [Max Consecutive Ones II](https://github.com/openset/leetcode/tree/master/problems/max-consecutive-ones-ii) (Medium)
62+
63+
### Hints
64+
<details>
65+
<summary>Hint 1</summary>
66+
One thing's for sure, we will only flip a zero if it extends an existing window of 1s. Otherwise, there's no point in doing it, right? Think Sliding Window!
67+
</details>
68+
69+
<details>
70+
<summary>Hint 2</summary>
71+
Since we know this problem can be solved using the sliding window construct, we might as well focus in that direction for hints. Basically, in a given window, we can never have > K zeros, right?
72+
</details>
73+
74+
<details>
75+
<summary>Hint 3</summary>
76+
We don't have a fixed size window in this case. The window size can grow and shrink depending upon the number of zeros we have (we don't actually have to flip the zeros here!).
77+
</details>
78+
79+
<details>
80+
<summary>Hint 4</summary>
81+
The way to shrink or expand a window would be based on the number of zeros that can still be flipped and so on.
82+
</details>

problems/max-consecutive-ones/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,11 @@
3535
### Similar Questions
3636
1. [Max Consecutive Ones II](https://github.com/openset/leetcode/tree/master/problems/max-consecutive-ones-ii) (Medium)
3737
1. [Max Consecutive Ones III](https://github.com/openset/leetcode/tree/master/problems/max-consecutive-ones-iii) (Medium)
38+
39+
### Hints
40+
<details>
41+
<summary>Hint 1</summary>
42+
You need to think about two things as far as any window is concerned. One is the starting point for the window. How do you detect that a new window of 1s has started? The next part is detecting the ending point for this window.
43+
44+
How do you detect the ending point for an existing window? If you figure these two things out, you will be able to detect the windows of consecutive ones. All that remains afterward is to find the longest such window and return the size.
45+
</details>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<!--|This file generated by command(leetcode description); DO NOT EDIT. |-->
2+
<!--+----------------------------------------------------------------------+-->
3+
<!--|@author openset <[email protected]> |-->
4+
<!--|@link https://github.com/openset |-->
5+
<!--|@home https://github.com/openset/leetcode |-->
6+
<!--+----------------------------------------------------------------------+-->
7+
8+
[< Previous](https://github.com/openset/leetcode/tree/master/problems/circular-permutation-in-binary-representation "Circular Permutation in Binary Representation")
9+
                
10+
[Next >](https://github.com/openset/leetcode/tree/master/problems/tiling-a-rectangle-with-the-fewest-squares "Tiling a Rectangle with the Fewest Squares")
11+
12+
## [1239. Maximum Length of a Concatenated String with Unique Characters (Medium)](https://leetcode.com/problems/maximum-length-of-a-concatenated-string-with-unique-characters "串联字符串的最大长度")
13+
14+
<p>Given an array of strings <code>arr</code>. String <code>s</code> is a concatenation of a sub-sequence of <code>arr</code> which have <strong>unique characters</strong>.</p>
15+
16+
<p>Return <em>the maximum possible length</em> of <code>s</code>.</p>
17+
18+
<p>&nbsp;</p>
19+
<p><strong>Example 1:</strong></p>
20+
21+
<pre>
22+
<strong>Input:</strong> arr = [&quot;un&quot;,&quot;iq&quot;,&quot;ue&quot;]
23+
<strong>Output:</strong> 4
24+
<strong>Explanation:</strong> All possible concatenations are &quot;&quot;,&quot;un&quot;,&quot;iq&quot;,&quot;ue&quot;,&quot;uniq&quot; and &quot;ique&quot;.
25+
Maximum length is 4.
26+
</pre>
27+
28+
<p><strong>Example 2:</strong></p>
29+
30+
<pre>
31+
<strong>Input:</strong> arr = [&quot;cha&quot;,&quot;r&quot;,&quot;act&quot;,&quot;ers&quot;]
32+
<strong>Output:</strong> 6
33+
<strong>Explanation:</strong> Possible solutions are &quot;chaers&quot; and &quot;acters&quot;.
34+
</pre>
35+
36+
<p><strong>Example 3:</strong></p>
37+
38+
<pre>
39+
<strong>Input:</strong> arr = [&quot;abcdefghijklmnopqrstuvwxyz&quot;]
40+
<strong>Output:</strong> 26
41+
</pre>
42+
43+
<p>&nbsp;</p>
44+
<p><strong>Constraints:</strong></p>
45+
46+
<ul>
47+
<li><code>1 &lt;= arr.length &lt;= 16</code></li>
48+
<li><code>1 &lt;= arr[i].length &lt;= 26</code></li>
49+
<li><code>arr[i]</code> contains only lower case English letters.</li>
50+
</ul>
51+
52+
### Related Topics
53+
[[Bit Manipulation](https://github.com/openset/leetcode/tree/master/tag/bit-manipulation/README.md)]
54+
[[Backtracking](https://github.com/openset/leetcode/tree/master/tag/backtracking/README.md)]
55+
56+
### Hints
57+
<details>
58+
<summary>Hint 1</summary>
59+
You can try all combinations and keep mask of characters you have.
60+
</details>
61+
62+
<details>
63+
<summary>Hint 2</summary>
64+
You can use DP.
65+
</details>

0 commit comments

Comments
 (0)