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 c3cadc2

Browse files
Add Pramp start problems
1 parent f427a9f commit c3cadc2

File tree

4 files changed

+86
-0
lines changed

4 files changed

+86
-0
lines changed

‎LeetCode/Attempting/11_ContainerWithMostWater/11_Container-with-most-water.md

Whitespace-only changes.

‎LeetCode/Attempting/11_ContainerWithMostWater/11_ContainerWithMostWater.js

Whitespace-only changes.
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 |

‎Pramp/README.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# [Pramp problems](https://pramp.com) I've completed and attempted.
2+
3+
## Completed
4+
5+
| Problem | Completed | Code Link |
6+
|--------------|-------------|-------------------------------------|
7+
| Problem Name | dd-MMM-yyyy | [Problem](Update link after commit) |
8+
9+
## Need to Revisit
10+
11+
| Problem | Revisited | Code Link |
12+
|--------------|-------------|-------------------------------------|
13+
| Problem Name | dd-MMM-yyyy | [Problem](Update link after commit) |
14+
15+
---
16+
17+
## Useful Editing Info
18+
19+
#### [GitHub Link Shortener](https://git.io/)
20+
21+
#### Problem Folder Structure
22+
23+
```
24+
##_Problem-name
25+
##_Problem-name.js -- contains only solution code
26+
##_Notes.md -- working notes, comments and scratch code
27+
README.md -- problem statement, page link, and pertinent dates
28+
```
29+
30+
#### Competed Problem Commit Flow
31+
32+
1. Correct Answer
33+
2. Snapshot of completion → png
34+
3. Update Local readme with date and completion number
35+
4. Move problem directory to 'Completed'
36+
5. Commit
37+
6. Update main readme link
38+
7. Final problem commit
39+
40+
#### Sample Multi-line Commit Message
41+
42+
```
43+
git commit -m "Added Attempting, Completed, and Template folders"
44+
-m "To Attempting
45+
46+
04_Largest-palindrome-product
47+
05_Smallest-multiple
48+
07_10001st-prime
49+
08_Largest-product-in-a-series
50+
09_Special-pythagorean-triplet
51+
52+
To Completed
53+
01_Sum-of-multiples-of-3-and-5
54+
02_Even-fibonacci-numbers
55+
06_Sum-square-difference
56+
57+
To Template
58+
Base folder, js, and md folder templates"
59+
```
60+
61+
[How a message committed like this looks](https://git.io/fAWiC)

0 commit comments

Comments
(0)

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