Skip to content

Commit 54daef1

Browse files
committed
✨ [83] Remove Duplicates from Sorted List
1 parent 7de8bc8 commit 54daef1

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

83/my_solution.js

Whitespace-only changes.

83/solution.js

Whitespace-only changes.

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Leetcode Solutions
2+
23
[![wakatime](https://wakatime.com/badge/user/849bb989-6c1a-4bb4-a5f1-ba937583da5f/project/d0b05c78-06be-40bb-9bca-1e26b4ccd8db.svg)](https://wakatime.com/badge/user/849bb989-6c1a-4bb4-a5f1-ba937583da5f/project/d0b05c78-06be-40bb-9bca-1e26b4ccd8db)
34

5+
[![My LeetCode stats](https://leetcode-stats-six.vercel.app/api?username=enkr1&theme=dark)](https://leetcode.com/enkr1/)
6+
47
[Notion Database - all of my notes on the problems](https://enkr.notion.site/db6bbb891f264f37a64c99799ca2057d?v=0b3cf643151b4ec1b29a01eecce8bbb4)
58

69
> I prefer to initially code using Google Docs as my primary platform, unless it's a new topic that necessitates debugging in a terminal or if I encounter challenges that prevent me from completing the task within the allotted time. (30m)
@@ -22,6 +25,7 @@
2225
- [23. Merge k Sorted Lists](./23/)
2326
- [33. Search in Rotated Sorted Array](./33/)
2427
- [53. Maximum Subarray](./53/)
28+
- [83. Remove Duplicates from Sorted List](./83/)
2529
- [121. Best Time to Buy and Sell Stock](./121/)
2630
- [141. Linked List Cycle](./141/)
2731
- [143. Reorder List](./143/)
@@ -67,7 +71,7 @@ iex ./.../solution.ex
6771

6872
Batch create in bash
6973
```ssh
70-
chapter=143 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
74+
chapter=83 && mkdir ./$chapter && touch ./$chapter/my_solution.js && touch ./$chapter/solution.js && alias x="node ./$chapter/my_solution.js"
7175
```
7276
> And now you can use `x` for quick debug.
7377

0 commit comments

Comments
 (0)