科技正在飞速改变我们的生活,以前我们上班的时候,脖子上总会挂一个IC卡用来验证身份和签到打卡,后来指纹识别出现了,我们又逐渐习惯了指纹打卡,到如今,随着人脸识别技术的出现,我们开始用“脸”打卡了。用“脸”打卡并不稀奇,近年来随着人脸识别技术的突破和普及,市面上逐渐涌现出不少人脸考勤设备。不少企业为了优化考勤管理,节省管理成本,引入弘和人脸考勤。该人脸考勤系统以人脸识别、定位考勤为核心功能,协同企业
分类:
其他好文 时间:
2019-05-07 15:40:24
阅读次数:
188
``` 打卡 ``` ``` export default { data() { return { formId: [] }; }, methods: { submit: function(e) { ... ...
分类:
微信 时间:
2019-05-07 15:33:56
阅读次数:
262
A: Unique Paths II Medium A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below). The robot can only move eit ...
分类:
其他好文 时间:
2019-05-05 23:40:11
阅读次数:
184
A:Rotate Image Medium You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Note: You have to rotate the ...
分类:
其他好文 时间:
2019-05-05 23:39:41
阅读次数:
170
A: Subsets 题目:Given a set of distinct integers, nums, return all possible subsets (the power set). Note: The solution set must not contain duplicate s ...
分类:
其他好文 时间:
2019-05-05 23:31:09
阅读次数:
198
java的继承 package Music; public class Music { public void tune(Instrument i){ i.play(); } public static void main(String args[]){ Music a=new Music(); I ...
分类:
其他好文 时间:
2019-05-05 23:26:19
阅读次数:
144
A:Merge Intervals Medium Given a collection of intervals, merge all overlapping intervals. 解析:对给定的一个对象集合进行处理,将对象集合中存在交集的对象进行合并,行成一个新的集合 思路:优先将对象集合进行处理 ...
分类:
其他好文 时间:
2019-05-05 23:17:14
阅读次数:
175
A:Add Two Numbers Medium You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and e ...
分类:
其他好文 时间:
2019-05-05 23:10:38
阅读次数:
153
本周分享一个好用的小工具,java-faker:https://github.com/DiUS/java-faker,相应的python:https://github.com/joke2k/faker。 使用faker库,可以轻松的造假数据,再也不用担心演示的时候,假数据不好看了。 java版本使用 ...
分类:
其他好文 时间:
2019-05-04 23:54:40
阅读次数:
242