码迷,mamicode.com
首页 >  
搜索关键字:target    ( 24275个结果
18. 4Sum; combination sum
18. 4Sumclass Solution(object): def fourSum(self, nums, target): nums.sort() results = [] self.findNsum(nums, target, 4, [], results) return results d ...
分类:其他好文   时间:2018-10-03 23:51:40    阅读次数:237
关于Unity实现AR功能(二)进阶触发及手势
一. 图片识别触发与图片移出视角触发 ImageTarget身上“Default Trackable Event Handler”脚本中 “OnTrackingFound”方法:图片识别触发 “OnTrackingLost”方法:图片移出视角触发 根据需要自定义重写该方法 二. 对应的手机操作手势 ...
分类:编程语言   时间:2018-10-03 22:13:31    阅读次数:607
与HDFS交互- By java API编程
环境(ubuntu下) jdk eclipse jar(很烦,整了很久才清楚) - 导包方法 查看: 操作 文件的创建,读入,写入,删除,上传,下载 目录的创建,删除等 例子 - 文件的创建 结果截图: 参考:http://dblab.xmu.edu.cn/blog/290-2/ ...
分类:编程语言   时间:2018-10-03 22:05:26    阅读次数:429
性能优化 UI 主线程 卡顿监测 BlockCanary
性能优化 UI 主线程 卡顿监测 AndroidPerformanceMonitor BlockCanary GitHub:AndroidPerformanceMonitor 参考:BlockCanary原理 目录 目录介绍背景特点功能使用案例引入依赖初始化监控配置模拟触发分析log原理 介绍 Bl... ...
分类:编程语言   时间:2018-10-03 22:02:32    阅读次数:559
form表单提交方式
无刷新页面提交表单 无刷新页面提交表单 表单可实现无刷新页面提交,无需页面跳转,如下,通过一个隐藏的iframe实现,form表单的target设置为iframe的name名称,form提交目标位当前页面iframe则不会刷新页面 <form action="/url.do" method="pos ...
分类:其他好文   时间:2018-10-03 21:54:26    阅读次数:162
linux下为firfox安装flash player
1.去官网下载×.tar.gz包,如:flash_player_npapi_linux.x86_64.tar.gz 2.解压 3.安装方法可以参照,解压文件中的readme.txt 如果看不懂可以看下面的方法: 1)找到火狐的插件文件夹 2)可以看到文件夹/usr/lib/mozilla,插件文件夹 ...
分类:系统相关   时间:2018-10-03 00:48:17    阅读次数:242
3分钟快速presentation
来自英语课的一个练习: next up I'd like to welcome Joshua to ten he's from the ANU College of Medicine biology and the environment and the title of his three-min ...
分类:其他好文   时间:2018-10-03 00:37:23    阅读次数:320
18. 4Sum
Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c + d = target? Find all unique q ...
分类:其他好文   时间:2018-10-03 00:30:20    阅读次数:142
汇编语言从入门到精通-标志位的说明
16位标志寄存器——共用了9个标志位,它们主要用来反映CPU的状态和运算结果的特征。标志位的分布如下表所示。 OF DF IF TF SF ZF AF PF CF 32位标志寄存器——32位CPU也把标志寄存器扩展到32位,记为EFLAGS。它新增加了四个控制标志位,它们是:IOPL、NT、RF和V ...
分类:编程语言   时间:2018-10-03 00:29:05    阅读次数:306
16. 3Sum Closest
Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the thr ...
分类:其他好文   时间:2018-10-03 00:28:19    阅读次数:161
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!