test
This commit is contained in:
commit
9a4fffbbd4
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
venv/
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
.DS_Store
|
@ -0,0 +1,4 @@
|
|||||||
|
python -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
pip install -r requirements.txt
|
||||||
|
python script.py
|
@ -1,4 +1,9 @@
|
|||||||
import numpy as np
|
import numpy as np
|
||||||
|
|
||||||
print(np.eye(3))
|
print(np.eye(3))
|
||||||
|
<<<<<<< HEAD
|
||||||
print("Hello world")
|
print("Hello world")
|
||||||
|
=======
|
||||||
|
print(np.eye(4))
|
||||||
|
print(np.eye(5))
|
||||||
|
>>>>>>> d4c78e1110aad09c79e474f060e7b9f7cd97470b
|
||||||
|
Loading…
Reference in New Issue
Block a user