Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit a1077eb

Browse files
Add 3Sum → LeetCode/Attempting; Update README links
1 parent 060e489 commit a1077eb

File tree

5 files changed

+41
-12
lines changed

5 files changed

+41
-12
lines changed

‎DailyProgrammer/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## Completed
44

5-
| Problem | Completed | Code Link |
6-
| --------------------------------- | ----------- | --------------------------------------- |
7-
| #354 [Easy]: Integer Complexity 1 | 07-Sep-2018 | [Problem](Add link → move to completed) |
8-
| #76 [Easy]: Title Case | 05-Sep-2018 | [Problem](Update link → rename folder) |
5+
| Problem | Completed | Code Link |
6+
| --------------------------------- | ----------- | ------------------------------- |
7+
| #354 [Easy]: Integer Complexity 1 | 07-Sep-2018 | [Problem](https://git.io/fA2MT) |
8+
| #76 [Easy]: Title Case | 05-Sep-2018 | [Problem](https://git.io/fA2Mk) |
99

1010
## Need to Revisit
1111

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 15. 3Sum - Notes

‎LeetCode/Attempting/15_3Sum/15_3Sum.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// ===================================
2+
// 15. 3Sum - Solution
3+
// ===================================

‎LeetCode/Attempting/15_3Sum/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# [15. 3Sum](https://leetcode.com/problems/3sum/description/)
2+
3+
Given an array `nums` of _n_ integers, are there elements _a, b, c_ in `nums` such that _a + b + c_ = 0? Find all unique triplets in the array which gives the sum of zero.
4+
5+
### Note:
6+
7+
The solution set must not contain duplicate triplets.
8+
9+
### Example:
10+
11+
```
12+
Given array nums = [-1, 0, 1, 2, -1, -4],
13+
14+
A solution set is:
15+
[
16+
[-1, 0, 1],
17+
[-1, -1, 2]
18+
]
19+
```
20+
21+
---
22+
23+
| Started | Last revisited | Completed |
24+
| ----------- | -------------- | ----------- |
25+
| 08-Sep-2018 | 08-Sep-2018 | dd-MMM-yyyy |

‎README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ My notes and answers as JS files are also available to show my answer and steps
88

99
### Last 5 Completed
1010

11-
| Problem | Source | Completed | Prompt & Code |
12-
| --------------------------------- | ------ | ----------- | --------------------------------------- |
13-
| #354 [Easy]: Integer Complexity 1 | DAILY | 07-Sep-2018 | [Problem](Add link → move to completed) |
14-
| Median of Two Sorted Arrays | LEET | 07-Sep-2018 | [Problem](https://git.io/fAzud) |
15-
| Longest Non-repeating Substring | LEET | 07-Sep-2018 | [Problem](https://git.io/fAzuK) |
16-
| Two Sum | LEET | 06-Sep-2018 | [Problem](https://git.io/fAzUw) |
17-
| #76 [Easy]: Title Case | DAILY | 05-Sep-2018 | [Problem](Update link → rename folder) |
11+
| Problem | Source | Completed | Prompt & Code |
12+
| --------------------------------- | ------ | ----------- | ------------------------------- |
13+
| #354 [Easy]: Integer Complexity 1 | DAILY | 07-Sep-2018 | [Problem](https://git.io/fA2MT) |
14+
| Median of Two Sorted Arrays | LEET | 07-Sep-2018 | [Problem](https://git.io/fAzud) |
15+
| Longest Non-repeating Substring | LEET | 07-Sep-2018 | [Problem](https://git.io/fAzuK) |
16+
| Two Sum | LEET | 06-Sep-2018 | [Problem](https://git.io/fAzUw) |
17+
| #76 [Easy]: Title Case | DAILY | 05-Sep-2018 | [Problem](https://git.io/fA2Mk) |
1818

1919
### Last 5 Revisited
2020

@@ -34,7 +34,7 @@ My notes and answers as JS files are also available to show my answer and steps
3434

3535
- [[DAILY] DailyProgrammer:](https://www.reddit.com/r/dailyprogrammer) 3 challenges a week are posted at increasing difficulty.
3636
- [[EULER] Project Euler:](https://projecteuler.net/archives) Math-oriented programming problems
37-
- [[LEET] LeetCode:](https://leetcode.com/) An effective resource to prepare for technical interviews and practice poding questions
37+
- [[LEET] LeetCode:](https://leetcode.com/problemset/all/) An effective resource to prepare for technical interviews and practice poding questions
3838
- [[WARS] Codewars:](https://www.codewars.com/) Programming exercises train a variety of skills
3939
- [[W3R] w3resource | JS:](https://projecteuler.net/archives) Collection of JS problems organized into categories
4040

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /