Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution in python for Concatenation of Array #87

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions LeetCode/Concatenation-of-Array/python/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# How To Start The Project

**This Problem was solved with nodejs, Use the below commands to start the project**

- **For type checking install mypy**

```bash
python3 -m pip install mypy
```

- **To start the project inside the directory (remove the comments)**

```bash
mypy solution.py
python solution.py
```
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions LeetCode/Concatenation-of-Array/python/solution.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from typing import List
class Solution:
def getConcatenation(self, nums: List[int]) -> List[int]:
# solution for python 3 and less
return nums + nums

"""
solution = Solution()
print(solution.getConcatenation([1, 2, 3]))
"""