https://github.com/lakinduboteju/leetcode-solutions
https://github.com/lakinduboteju/leetcode-solutions
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lakinduboteju/leetcode-solutions
- Owner: lakinduboteju
- Created: 2024-07-12T22:37:07.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T22:49:15.000Z (11 months ago)
- Last Synced: 2024-07-13T00:18:00.439Z (11 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Leetcode Solutions
## How to debug
``` bash
$ docker compose build
$ docker compose up -d
$ docker compose down
`````` bash
$ docker exec -it leetcode bash
`````` bash
# Run following command and debug using Pythong Debugger in vscode
$ poetry run python -Xfrozen_modules=off -m debugpy --listen 0.0.0.0:5678 --wait-for-client xxxx.py
```## Contents
1. [88. Merge Sorted Array](src/88_merge_sorted_array.py) |
[Question](https://leetcode.com/problems/merge-sorted-array)