-
Notifications
You must be signed in to change notification settings - Fork 138
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
LeetCode 是如何运行的--测试篇 #237
Labels
技术文章
技术文章
Comments
leetcode the hacker way! |
大学时代在做oj核心的时候也碰到过这个问题,怎么防止用户作弊。但是当时实力有限,就不做了,直接摆烂 |
链接其他 issue/pr 的时候可以放到 markdown list 里面,这样 GitHub 会 render 出标题来,比如 |
学到了,已经更改,感谢哈哈。 |
拿到所有测试,感觉可以自动生成 if a: return b 的程序。。。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
初
有段日子没写博客了。
一般情况,四张图加上 140 字能表达的内容我就直接发推了,想到这个可能会超过这个长度,就写在这里吧。
当然有个前情提要,感恩 GitHub Issues 的双向链接,
起因
最近心血来潮决定去刷几道题,上一次也是第一次刷题还是 3 年前了。
刷题的过程中感觉到了自己的不足。写完代码就直接提交了,结果很多时候是错的。也发现了 LeetCode 有先测试功能,需要自己写测试用例。
编了几个之后突然想,为什么我不能用官方的测试用例呢?那样不是更方便。搜了一下发现是没有的,并且这个需求还是有人提过的
那么我能不能用我之前那篇文章的方法拿到 test case 呢?
探索
data.in
最奇怪了,那么我们能不能打开呢?继续探索
print
根本是打不下的,LeetCode 也只会截取前面的,后面用...
代替zlib compress + base64
给字符串压缩,同样失败,有一点点效果urllib.request.urlopen
能不能把data.in
发出去?不行,这个 docker 内部网是不通的意义呢
启示呢
The text was updated successfully, but these errors were encountered: