Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: prashanthigupta/leetcode-algorithms
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7debb75
Choose a base ref
...
head repository: anishLearnsToCode/leetcode-algorithms
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b990d84
Choose a head ref
Loading
Showing 435 changed files with 14,008 additions and 1,077 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -2,3 +2,4 @@
out
venv
*.iml
.DS_Store
34 changes: 1 addition & 33 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -18,36 +18,4 @@ and then create a pull request with the added solution and updated readme.
2. Say you solve some problem called __cars-and-trucks__ in using your favorite programming language,
say Python then simple add a new file called
`cars-and-trucks.py` in the `python` directory.
3. In the [README](README.md) file, add a Python logo along with an empty link.
4. Updating the link for the solution will be done by the Project maintainers
(aka. [anishLearnsToCode](https://github.com/anishLearnsToCode))

## Programming Language Logos
To add a logo in the [README](README.md) table simply add a link with an embedded picture as
```markdown
[![Python](icon-link)](this link will be filled by the author if the pull request is accepted)
```

For the icon link refer to the table below to obtain the link for a specific programming language:

| Programming Language | Icon | Icon Link|
|:--------------------:|:----:|:----:|
| Java | ![Java](assets/java.png) | assets/java.png |
| Python | ![Python](assets/python.png) | assets/python.png |
| C | ![C](https://img.icons8.com/color/35/000000/c-programming.png) | https://img.icons8.com/color/35/000000/c-programming.png |
| C++ | ![C++](https://img.icons8.com/color/35/000000/c-plus-plus-logo.png) | https://img.icons8.com/color/35/000000/c-plus-plus-logo.png |
| C# | ![C#](https://img.icons8.com/color/35/000000/c-sharp-logo.png) | https://img.icons8.com/color/35/000000/c-sharp-logo.png |
| JavaScript | ![JavaScript](https://img.icons8.com/color/40/000000/javascript.png) | https://img.icons8.com/color/40/000000/javascript.png |
| TypeScript | ![TypeScript](https://img.icons8.com/color/40/000000/typescript.png) | https://img.icons8.com/color/40/000000/typescript.png |
| Ruby | ![Ruby](https://img.icons8.com/office/35/000000/ruby-programming-language.png) | https://img.icons8.com/office/35/000000/ruby-programming-language.png |
| Scala | ![Scala](https://img.icons8.com/dusk/35/000000/scala.png) | https://img.icons8.com/office/35/000000/ruby-programming-language.png |
| PHP | ![PHP](https://img.icons8.com/officel/40/000000/php-logo.png) | https://img.icons8.com/officel/40/000000/php-logo.png |
| Swift | ![Swift](https://img.icons8.com/fluent/40/000000/swift.png) | https://img.icons8.com/fluent/40/000000/swift.png |








3. In the [README](README.md) file, do not make any modification. The README file will be modified by __@anishLearnsToCode__.
Loading