Skip to content

Commit 055bc2c

Browse files
committed
update readme
1 parent 8233988 commit 055bc2c

File tree

12 files changed

+22
-363
lines changed

12 files changed

+22
-363
lines changed

1214-two-sum-bsts/1214-two-sum-bsts.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

1214-two-sum-bsts/README.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

1590-make-sum-divisible-by-p/1590-make-sum-divisible-by-p.py

Lines changed: 0 additions & 32 deletions
This file was deleted.

1590-make-sum-divisible-by-p/README.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

2141-maximum-running-time-of-n-computers/2141-maximum-running-time-of-n-computers.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

2141-maximum-running-time-of-n-computers/README.md

Lines changed: 0 additions & 42 deletions
This file was deleted.

3623-count-number-of-trapezoids-i/3623-count-number-of-trapezoids-i.py

Lines changed: 0 additions & 33 deletions
This file was deleted.

3623-count-number-of-trapezoids-i/README.md

Lines changed: 0 additions & 51 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 64 deletions
Original file line numberDiff line numberDiff line change
@@ -115,67 +115,3 @@ It helps others discover the repo and keeps the project growing.
115115
---
116116

117117
Feedback / Questions → open an Issue or reach out on [LinkedIn](https://www.linkedin.com/in/hogan-l/)
118-
119-
<!---LeetCode Topics Start-->
120-
# LeetCode Topics
121-
## Array
122-
| |
123-
| ------- |
124-
| [1590-make-sum-divisible-by-p](https://github.com/hogan-tech/leetcode-solution/tree/master/1590-make-sum-divisible-by-p) |
125-
| [2141-maximum-running-time-of-n-computers](https://github.com/hogan-tech/leetcode-solution/tree/master/2141-maximum-running-time-of-n-computers) |
126-
| [3623-count-number-of-trapezoids-i](https://github.com/hogan-tech/leetcode-solution/tree/master/3623-count-number-of-trapezoids-i) |
127-
## Hash Table
128-
| |
129-
| ------- |
130-
| [1590-make-sum-divisible-by-p](https://github.com/hogan-tech/leetcode-solution/tree/master/1590-make-sum-divisible-by-p) |
131-
| [3623-count-number-of-trapezoids-i](https://github.com/hogan-tech/leetcode-solution/tree/master/3623-count-number-of-trapezoids-i) |
132-
## Prefix Sum
133-
| |
134-
| ------- |
135-
| [1590-make-sum-divisible-by-p](https://github.com/hogan-tech/leetcode-solution/tree/master/1590-make-sum-divisible-by-p) |
136-
## Binary Search
137-
| |
138-
| ------- |
139-
| [1214-two-sum-bsts](https://github.com/hogan-tech/leetcode-solution/tree/master/1214-two-sum-bsts) |
140-
| [2141-maximum-running-time-of-n-computers](https://github.com/hogan-tech/leetcode-solution/tree/master/2141-maximum-running-time-of-n-computers) |
141-
## Greedy
142-
| |
143-
| ------- |
144-
| [2141-maximum-running-time-of-n-computers](https://github.com/hogan-tech/leetcode-solution/tree/master/2141-maximum-running-time-of-n-computers) |
145-
## Sorting
146-
| |
147-
| ------- |
148-
| [2141-maximum-running-time-of-n-computers](https://github.com/hogan-tech/leetcode-solution/tree/master/2141-maximum-running-time-of-n-computers) |
149-
## Two Pointers
150-
| |
151-
| ------- |
152-
| [1214-two-sum-bsts](https://github.com/hogan-tech/leetcode-solution/tree/master/1214-two-sum-bsts) |
153-
## Stack
154-
| |
155-
| ------- |
156-
| [1214-two-sum-bsts](https://github.com/hogan-tech/leetcode-solution/tree/master/1214-two-sum-bsts) |
157-
## Tree
158-
| |
159-
| ------- |
160-
| [1214-two-sum-bsts](https://github.com/hogan-tech/leetcode-solution/tree/master/1214-two-sum-bsts) |
161-
## Depth-First Search
162-
| |
163-
| ------- |
164-
| [1214-two-sum-bsts](https://github.com/hogan-tech/leetcode-solution/tree/master/1214-two-sum-bsts) |
165-
## Binary Search Tree
166-
| |
167-
| ------- |
168-
| [1214-two-sum-bsts](https://github.com/hogan-tech/leetcode-solution/tree/master/1214-two-sum-bsts) |
169-
## Binary Tree
170-
| |
171-
| ------- |
172-
| [1214-two-sum-bsts](https://github.com/hogan-tech/leetcode-solution/tree/master/1214-two-sum-bsts) |
173-
## Math
174-
| |
175-
| ------- |
176-
| [3623-count-number-of-trapezoids-i](https://github.com/hogan-tech/leetcode-solution/tree/master/3623-count-number-of-trapezoids-i) |
177-
## Geometry
178-
| |
179-
| ------- |
180-
| [3623-count-number-of-trapezoids-i](https://github.com/hogan-tech/leetcode-solution/tree/master/3623-count-number-of-trapezoids-i) |
181-
<!---LeetCode Topics End-->

Readme/1214-two-sum-bsts.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
<h2> 559 46
2-
1214. Two Sum BSTs</h2><hr><div><p>Given the roots of two binary search trees, <code>root1</code> and <code>root2</code>, return <code>true</code> if and only if there is a node in the first tree and a node in the second tree whose values sum up to a given integer <code>target</code>.</p>
1+
<h2><a href="https://leetcode.com/problems/two-sum-bsts">1150. Two Sum BSTs</a></h2><h3>Medium</h3><hr><p>Given the roots of two binary search trees, <code>root1</code> and <code>root2</code>, return <code>true</code> if and only if there is a node in the first tree and a node in the second tree whose values sum up to a given integer <code>target</code>.</p>
32

43
<p>&nbsp;</p>
54
<p><strong class="example">Example 1:</strong></p>
6-
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/10/ex1.png" style="width: 369px; height: 169px;">
7-
<pre><strong>Input:</strong> root1 = [2,1,4], root2 = [1,0,3], target = 5
5+
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/10/ex1.png" style="width: 369px; height: 169px;" />
6+
<pre>
7+
<strong>Input:</strong> root1 = [2,1,4], root2 = [1,0,3], target = 5
88
<strong>Output:</strong> true
99
<strong>Explanation: </strong>2 and 3 sum up to 5.
1010
</pre>
1111

1212
<p><strong class="example">Example 2:</strong></p>
13-
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/10/ex2.png" style="width: 453px; height: 290px;">
14-
<pre><strong>Input:</strong> root1 = [0,-10,10], root2 = [5,1,7,0,2], target = 18
13+
<img alt="" src="https://assets.leetcode.com/uploads/2021/02/10/ex2.png" style="width: 453px; height: 290px;" />
14+
<pre>
15+
<strong>Input:</strong> root1 = [0,-10,10], root2 = [5,1,7,0,2], target = 18
1516
<strong>Output:</strong> false
1617
</pre>
1718

@@ -22,4 +23,3 @@
2223
<li>The number of nodes in each tree is in the range <code>[1, 5000]</code>.</li>
2324
<li><code>-10<sup>9</sup> &lt;= Node.val, target &lt;= 10<sup>9</sup></code></li>
2425
</ul>
25-
</div>

0 commit comments

Comments
 (0)