Python之禅
在Python的解释器中隐藏一个彩蛋,输入import this就会返回19条Python之禅,具体如下:
import this
The Zen of Python, by Tim Peters Python之禅 ,by Tim Peters
Beautiful is better than ugly.
优美好于丑陋&…
看下open clip论文 Learning Transferable Visual Models From Natural Language Supervision These results suggest that the aggregate supervision accessible to modern pre-training methods within web-scale collections of text surpasses that of high-quality crowd…
Every day a Leetcode
题目来源:2833. 距离原点最远的点
解法1:贪心
要使得到达的距离原点最远的点,就看 left 和 right 谁大,将 left 和 right 作为矢量相加,再往同方向加上 underline。
答案即为 abs(left - rig…