_.delay(func, wait, [args]) 延迟wait毫秒之后调用该函数,添加的参数为函数调用时的参数 这个方法依赖于baseDelay方法 _.defer(func, [args]) 延迟1毫秒之后调用该函数,添加的参数为函数调用时的参数 _.flip(func) 创建一个调用fun ...
分类:
其他好文 时间:
2017-08-10 23:35:21
阅读次数:
192
最后三行是测试水平翻转对单个图片是否生效,发现可行。 关键是from PIL import Image这个模块找了我好久啊—_— 还有倒数第二行的im.transpose(Image.FLIP_LEFT_RIGHT)是图片水平翻转的核心语句 PS:print语句可以删去 ...
分类:
编程语言 时间:
2017-08-07 11:55:55
阅读次数:
176
https://leetcode.com/problems/binary-tree-upside-down/description/ Given a binary tree where all the right nodes are either leaf nodes with a sibling ...
分类:
其他好文 时间:
2017-08-06 14:17:01
阅读次数:
275
考试 几乎绝望的考试= =,感觉自己啥都打不出来= =,就一道DP打了个贪心,剩下两道骗分,然而竟然排到前一半= =,不可思议= = 真是令人窒息的操作啊= = T1 [bzoj1592] Making the Grade T2 [Usaco2007 Open]Fliptile 翻格子游戏 T3 [ ...
分类:
其他好文 时间:
2017-08-03 09:59:53
阅读次数:
141
Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: Example 1: Exa ...
分类:
其他好文 时间:
2017-07-27 21:23:50
阅读次数:
133
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:
其他好文 时间:
2017-07-24 13:24:07
阅读次数:
192
题目网址:http://poj.org/problem?id=1753 题目: Flip Game Description Flip game is played on a rectangular 4x4 field with two-sided pieces placed on each of i ...
分类:
其他好文 时间:
2017-07-21 12:35:16
阅读次数:
177
animate.css 是一个来自国外的 CSS3 动画库,它预设了抖动(shake)、闪烁(flash)、弹跳(bounce)、翻转(flip)、旋转(rotateIn/rotateOut)、淡入淡出(fadeIn/fadeOut)等多达 60 多种动画效果,几乎包含了所有常见的动画效果。 查看演 ...
分类:
Web程序 时间:
2017-07-20 23:56:51
阅读次数:
235
/* animation */.a-bounce,.a-flip,.a-flash,.a-shake,.a-swing,.a-wobble,.a-ring{-webkit-animation:1s ease;-moz-animation:1s ease;-ms-animation:1s ease;a ...
分类:
Web程序 时间:
2017-07-19 10:39:11
阅读次数:
215
一维数组可以直接使用array_unique()函数去重,或者使用两次array_flip()去重,但是多维数组的话就需要自己写了 前几天针对需要特别不能重复的二维数组中的几个字段联合唯一写了一个简单的去重方法 这里由于指定的几个特定的字段需要联合唯一,因而当出现同样一个的时候,由于数组的性质,当键 ...
分类:
编程语言 时间:
2017-07-05 15:19:42
阅读次数:
161