We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dc2083 commit bac7a69Copy full SHA for bac7a69
.gitignore
@@ -1,3 +1,31 @@
1
-.pre-commit-config.yaml
+# Python bytecode
2
+__pycache__/
3
+*.py[cod]
4
+*.pyo
5
+
6
+# Virtual environment
7
venv/
8
9
+# Django SQLite database
10
+db.sqlite3
11
12
+# Django migrations
13
+**/migrations/
14
+!*/migrations/__init__.py
15
16
+# VSCode or other IDEs
17
+.vscode/
18
+.idea/
19
20
+# OS-specific
21
+.DS_Store
22
+Thumbs.db
23
24
+# Env files
25
+.env
26
+.env.*
27
28
+# Logs
29
+*.log
30
31
__init__.py
test/geeks.py
@@ -1,4 +1,8 @@
-from geek_for_geeks.challenge.Secondlargest import getSecondLargest
+import os
+import sys
+sys.path.append(os.path.abspath(".."))
+from geek_for_geeks.challenge.secondlargest import getSecondLargest
class Test_getSecondLargest:
0 commit comments