Skip to content

Commit

Permalink
chore: Remove unused test files for Sort-Array problem
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalmishraa committed Jul 26, 2024
1 parent df810c0 commit 67a5894
Show file tree
Hide file tree
Showing 29 changed files with 20 additions and 203 deletions.
26 changes: 0 additions & 26 deletions apps/problems/Sort-Array/Problem.md

This file was deleted.

28 changes: 0 additions & 28 deletions apps/problems/Sort-Array/boilerplate-full/function.cpp

This file was deleted.

39 changes: 0 additions & 39 deletions apps/problems/Sort-Array/boilerplate-full/function.java

This file was deleted.

8 changes: 0 additions & 8 deletions apps/problems/Sort-Array/boilerplate-full/function.js

This file was deleted.

11 changes: 0 additions & 11 deletions apps/problems/Sort-Array/boilerplate-full/function.py

This file was deleted.

30 changes: 0 additions & 30 deletions apps/problems/Sort-Array/boilerplate-full/function.rs

This file was deleted.

4 changes: 0 additions & 4 deletions apps/problems/Sort-Array/boilerplate/function.cpp

This file was deleted.

4 changes: 0 additions & 4 deletions apps/problems/Sort-Array/boilerplate/function.java

This file was deleted.

4 changes: 0 additions & 4 deletions apps/problems/Sort-Array/boilerplate/function.js

This file was deleted.

3 changes: 0 additions & 3 deletions apps/problems/Sort-Array/boilerplate/function.py

This file was deleted.

4 changes: 0 additions & 4 deletions apps/problems/Sort-Array/boilerplate/function.rs

This file was deleted.

6 changes: 0 additions & 6 deletions apps/problems/Sort-Array/template.md

This file was deleted.

2 changes: 0 additions & 2 deletions apps/problems/Sort-Array/tests/inputs/0.txt

This file was deleted.

Empty file.
3 changes: 0 additions & 3 deletions apps/problems/Sort-Array/tests/inputs/2.txt

This file was deleted.

2 changes: 0 additions & 2 deletions apps/problems/Sort-Array/tests/inputs/3.txt

This file was deleted.

2 changes: 0 additions & 2 deletions apps/problems/Sort-Array/tests/inputs/4.txt

This file was deleted.

2 changes: 0 additions & 2 deletions apps/problems/Sort-Array/tests/inputs/5.txt

This file was deleted.

2 changes: 0 additions & 2 deletions apps/problems/Sort-Array/tests/inputs/6.txt

This file was deleted.

1 change: 0 additions & 1 deletion apps/problems/Sort-Array/tests/outputs/0.txt

This file was deleted.

Empty file.
1 change: 0 additions & 1 deletion apps/problems/Sort-Array/tests/outputs/2.txt

This file was deleted.

1 change: 0 additions & 1 deletion apps/problems/Sort-Array/tests/outputs/3.txt

This file was deleted.

1 change: 0 additions & 1 deletion apps/problems/Sort-Array/tests/outputs/4.txt

This file was deleted.

1 change: 0 additions & 1 deletion apps/problems/Sort-Array/tests/outputs/5.txt

This file was deleted.

1 change: 0 additions & 1 deletion apps/problems/Sort-Array/tests/outputs/6.txt

This file was deleted.

3 changes: 3 additions & 0 deletions k8s/1-mount-problems/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ spec:
- name: main-container
image: busybox
command: ['sh', '-c', 'sleep infinity']
volumeMounts:
- name: problems
mountPath: /problems
volumes:
- name: problems
persistentVolumeClaim:
Expand Down
28 changes: 14 additions & 14 deletions k8s/3-judge0/judge0.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ spec:
image: judge0/judge0:1.13.1
ports:
- containerPort: 2358
volumeMounts:
- name: problems-volume
mountPath: /dev/problems
- name: config-volume
mountPath: /judge0.conf
subPath: judge0.conf
env:
- name: REDIS_PASSWORD
value: "supersecurepassword"
Expand All @@ -48,8 +42,14 @@ spec:
limits:
cpu: "500m"
memory: "500Mi"
volumeMounts:
- name: problems
mountPath: /dev/problems
- name: config-volume
mountPath: /judge0.conf
subPath: judge0.conf
volumes:
- name: problems-volume
- name: problems
persistentVolumeClaim:
claimName: problems-pvc
- name: config-volume
Expand Down Expand Up @@ -94,12 +94,6 @@ spec:
- name: judge0-workers
image: judge0/judge0:1.13.1
command: ["./scripts/workers"]
volumeMounts:
- name: problems-volume
mountPath: /dev/problems
- name: config-volume
mountPath: /judge0.conf
subPath: judge0.conf
env:
- name: REDIS_PASSWORD
value: "supersecurepassword"
Expand All @@ -122,8 +116,14 @@ spec:
limits:
cpu: "200m"
memory: "500Mi"
volumeMounts:
- name: problems
mountPath: /dev/problems
- name: config-volume
mountPath: /judge0.conf
subPath: judge0.conf
volumes:
- name: problems-volume
- name: problems
persistentVolumeClaim:
claimName: problems-pvc
- name: config-volume
Expand Down
6 changes: 3 additions & 3 deletions k8s/5-web/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ spec:
image: vishal022/algoearth-web:latest
ports:
- containerPort: 3000
volumeMounts:
- name: problems
mountPath: /dev/problems
env:
- name: DATABASE_URL
valueFrom:
Expand Down Expand Up @@ -52,6 +49,9 @@ spec:
configMapKeyRef:
name: algoearth-web-config
key: NEXTAUTH_URL
volumeMounts:
- name: problems
mountPath: /problems
volumes:
- name: problems
persistentVolumeClaim:
Expand Down

0 comments on commit 67a5894

Please sign in to comment.