上一页 1 ··· 173 174 175 176 177 178 179 180 181 ··· 273 下一页
摘要: Given a binary search tree and the lowest and highest boundaries as L and R, trim the tree so that all its elements lies in [L, R] (R >= L). You might 阅读全文
posted @ 2018-03-05 23:37 bonelee 阅读(248) 评论(0) 推荐(0)
摘要: Given a List of words, return the words that can be typed using letters of alphabet on only one row's of American keyboard like the image below. Examp 阅读全文
posted @ 2018-03-05 22:46 bonelee 阅读(270) 评论(0) 推荐(0)
摘要: Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". class Solution(object): def 阅读全文
posted @ 2018-03-05 22:18 bonelee 阅读(210) 评论(0) 推荐(0)
摘要: Given a string, you need to reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order. E 阅读全文
posted @ 2018-03-05 21:14 bonelee 阅读(228) 评论(0) 推荐(0)
摘要: 网络安全中机器学习大合集 from:https://github.com/jivoi/awesome-ml-for-cybersecurity/blob/master/README_ch.md#-datasets 历年来那些与网络安全中机器学习相关最好的工具与资源 目录 数据集 论文 书籍 演讲 教 阅读全文
posted @ 2018-03-05 17:56 bonelee 阅读(5932) 评论(0) 推荐(1)
摘要: 动态域名是因应网络远程访问的需要而产生的一项应用技术。因为没有固定IP,只能运用二级域名来应对经常变化的IP,动态域名的由来因此而产生。 它当前主要应用在:路由器、网络摄像机、带网络监控的硬盘录像机、视频采集卡、企业管理ERP软件、SF软件服务端以及其他所有需要进行网络远程访问的应用中。 动态域名可 阅读全文
posted @ 2018-03-05 11:19 bonelee 阅读(2966) 评论(6) 推荐(0)
摘要: Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. Note: The given inte 阅读全文
posted @ 2018-03-04 18:11 bonelee 阅读(172) 评论(0) 推荐(0)
摘要: Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), ..., (an, bn) which makes sum of 阅读全文
posted @ 2018-03-04 17:09 bonelee 阅读(249) 评论(0) 推荐(0)
摘要: 我使用的caffe模型:https://github.com/BVLC/caffe/tree/ea455eb29393ebe6de9f14e88bfce9eae74edf6d/models/bvlc_alexnet 其中,需要下载deploy prototxt文件和caffmodel以供转换模型用。 阅读全文
posted @ 2018-03-02 12:02 bonelee 阅读(1021) 评论(0) 推荐(0)
摘要: A self-dividing number is a number that is divisible by every digit it contains. For example, 128 is a self-dividing number because 128 % 1 == 0, 128 阅读全文
posted @ 2018-03-01 23:26 bonelee 阅读(240) 评论(0) 推荐(0)
上一页 1 ··· 173 174 175 176 177 178 179 180 181 ··· 273 下一页