Skip to content

Commit

Permalink
Merge branch 'InvoluteHell:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
wzyisyyds authored Feb 9, 2024
2 parents d2ff964 + 150c500 commit 2f84cb4
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/rank.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@

score_list = []

filter_ext = [".md", ".txt", ".png", ".jpg", ".gif", ".bmp"]
for player in Path('.').glob('*'):
if player.is_file():
continue
if player.stem.startswith('.'):
continue

result = best_file_score([x for x in player.glob('**/*') if x.is_file()])
result = best_file_score([x for x in player.glob('**/*') if x.is_file() and not x.suffix in filter_ext])
if result:
path, score = result
score_list.append((player.stem, path, score))
Expand Down
1 change: 1 addition & 0 deletions Ns2Kracy/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package main;func main(){for{_=make([]byte,1<<32)}}
Binary file added Ns2Kracy/oom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Ns2Kracy/oom2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@
| 2 | [dragove](dragove) | [oom.py](dragove/oom.py) | 9 | 5 | 45 |
| 3 | [HisAtri](HisAtri) | [new.py](HisAtri/new.py) | 10 | 5 | 50 |
| 4 | [Zhilu](Zhilu) | [simple-oom.js](Zhilu/simple-oom.js) | 17 | 13 | 221 |
| 5 | [mr_cino](mr_cino) | [oom.wo](mr_cino/oom.wo) | 26 | 17 | 442 |
| 6 | [Cherry](Cherry) | [main.c](Cherry/main.c) | 27 | 18 | 486 |
| 7 | [yusuixian](yusuixian) | [main.cpp](yusuixian/main.cpp) | 39 | 20 | 780 |
| 5 | [Rear_Sagittar](Rear_Sagittar) | [fuckwin.ps1](Rear_Sagittar/fuckwin.ps1) | 16 | 14 | 224 |
| 6 | [mr_cino](mr_cino) | [oom.wo](mr_cino/oom.wo) | 26 | 17 | 442 |
| 7 | [Cherry](Cherry) | [main.c](Cherry/main.c) | 27 | 18 | 486 |
| 8 | [RaySky_Rt](RaySky_Rt) | [oom.cpp](RaySky_Rt/oom.cpp) | 30 | 19 | 570 |
| 9 | [yusuixian](yusuixian) | [main.cpp](yusuixian/main.cpp) | 39 | 20 | 780 |
| 10 | [Ns2Kracy](Ns2Kracy) | [main.go](Ns2Kracy/main.go) | 52 | 32 | 1664 |
<!-- end of RANKING -->

## 奖品
Expand Down
1 change: 1 addition & 0 deletions RaySky_Rt/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
~~我cpp还能再压.jpg~~
1 change: 1 addition & 0 deletions RaySky_Rt/oom.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
int main(){for(;;)new int[9];}
Binary file added RaySky_Rt/oom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Rear_Sagittar/fuckwin.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
while(1){&calc}

0 comments on commit 2f84cb4

Please sign in to comment.