classSolution:defmaxProfit(self, prices: List[int])->int:pre_min = prices[0]ans =0for num in prices:ans =max(ans, num - pre_min)pre_min =min(pre_min, num)return ans
目录 变量函数 变量
变量:计算机里的一块内存空间int a 0; 表示定义一个整型 int 变量;这个变量名字叫做 a “” 表示赋值;即将右边的 0 赋值给左边的整型变量 a 现在这一块空间 a 存放了一个值 0 这个过程也叫做整型变量 a 的初始化初始化…
C/WinRT 是 Windows 运行时 (WinRT) API 的完全标准新式 C17 语言投影,以基于标头文件的库的形式实现,旨在为你提供对新式 Windows API 的一流访问。 利用 C/WinRT,你可以采用任何符合标准的 C17 编译器创作和使用 Windows 运行时 API。 Wind…
这么简单的问题居然搜索了一会儿,现在的网络环境越来越差了。
解决方法:
gedit:
git config --global core.editor "gedit -s"
the paramater "-s " means set the gedit mode to "standalone"
Sublime Text 2
git …