题目如下: Given a string s of zeros and ones, return the maximum score after splitting the string into two non-empty substrings (i.e. left substring and r ...
分类:
其他好文 时间:
2020-06-01 18:02:06
阅读次数:
65
先看效果图 由于是截图,大小有些失真 实现分析 看到这个图,思考一下,就能明白,其实就两个难点: 左边的锯齿状是如何实现 中间的凹陷是如何实现 上述两个难点解决了,相信有css基础的都能写出这个组件。 实现锯齿效果 方法一:伪元素before和after .sawtooth { /* 相对定位,方便 ...
分类:
其他好文 时间:
2020-05-31 17:45:45
阅读次数:
59
原理 父级元素 relative,子元素 absolute,然后通过top、left、right、bottom来设置具体出现位置。 DOM结构 <div class="wrapper-dashed"> <div class="dashed"></div> </div> CSS样式 .wrapper- ...
分类:
Web程序 时间:
2020-05-31 16:15:29
阅读次数:
88
Spark提供的主要抽象是resilient distributed dataset(RDD) 弹性分布式数据集,它是跨集群节点划分的元素的集合,可以并行操作。通过从Hadoop文件系统(或任何其他Hadoop支持的文件系统)中的文件或驱动程序中现有的Scala集合开始并进行转换来创建RDD。用户还 ...
分类:
编程语言 时间:
2020-05-31 16:03:22
阅读次数:
92
def my_decorator(func): def wrapper(): print("Something is happening before the function is called.") func() print("Something is happening after the f ...
分类:
编程语言 时间:
2020-05-30 20:15:38
阅读次数:
77
qsort快速排序函数是C语言的高阶函数,支持用于自定义排序比较函数,可以对任意类型的数组进行排序。本节我们尝试基于C语言的qsort函数封装一个Go语言版本的qsort函数。 认识qsort函数 qsort快速排序函数有<stdlib.h>标准库提供,函数的声明如下: void qsort( vo ...
分类:
其他好文 时间:
2020-05-30 10:26:46
阅读次数:
60
Why MB Star Diagnostic tool is so well-received by thousands of users, its technology and quality is developed after lots of experiments and improveme ...
分类:
其他好文 时间:
2020-05-29 21:41:51
阅读次数:
120
gzserver: /build/ogre-1.9-mqY1wq/ogre-1.9-1.9.0+dfsg1/OgreMain/src/OgreRenderSystem.cpp:546: virtual void Ogre::RenderSystem::setDepthBufferFor(Ogre::RenderTarget*): Assertion `bAttached && "A new DepthBuffer for a RenderTarget was created, but after creation" "it says it‘s incompatible with that RT"‘ failed.
分类:
其他好文 时间:
2020-05-29 19:45:03
阅读次数:
180
shutdown now 只是退回到单用户模式 shutdown -h now(首选) 加一个h参数,这个参数的意思是Halt or poweroff after shutdown. poweroff 掉电关机。实际过程是先关闭系统,然后掉电。 halt 停操作系统,没有掉电,主板是通电的。 ...
分类:
系统相关 时间:
2020-05-29 17:29:55
阅读次数:
86
/etc/systemd/system目录下 [Unit] Description=rpc service After=network.target [Service] ExecStart= -/bin/bash -c "TERM=linux python /root/zrpc_service.py ...
分类:
其他好文 时间:
2020-05-28 16:33:12
阅读次数:
69