上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: tile是numpy中的一个函数 输入一个元组(1,2) 把a变为二维数组 阅读全文
posted @ 2017-12-20 12:47 hozhangel 阅读(263) 评论(0) 推荐(0) 编辑
摘要: numpy: 下载https://pypi.python.org/pypi/numpy相应版本到一个文件夹 进入文件夹 执行 pip install numpy文件名.whl 进入python 命令:from numpy import * 测试是否安装成功 matplotlib安装: 进入到CMD窗 阅读全文
posted @ 2017-12-20 11:28 hozhangel 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 参考网址:https://www.cnblogs.com/zhzhang/p/5437778.html K-means 首先选择K,代表分为几类 例如分为两类2-means,下面是计算过程: 一堆数据 一、先设两个中心 例如16,19 二、接着计算各个点与中心之间的距离 距离如何计算可以自己定义?例 阅读全文
posted @ 2017-12-19 19:49 hozhangel 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Windows下安装Git 参考网站 廖雪峰Git 在Windows上使用Git,可以从Git官网直接下载安装程序,然后按默认选项安装即可。 安装完成后,在开始菜单里找到“Git”->“Git Bash”,蹦出一个类似命令行窗口的东西,就说明Git安装成功 阅读全文
posted @ 2017-12-15 16:37 hozhangel 阅读(189) 评论(0) 推荐(0) 编辑
摘要: re.search是字符串里面存在某种正则 re.match是整个字符串匹配 re.findall可能得到的是数组,len(re.findall)判断数组是否为空 即能判断字符串中是否匹配某种模式 如何拆分TomJackSun为Tom Jack Sun: 替换操作re.sub和re.subn有什么区 阅读全文
posted @ 2017-12-15 15:33 hozhangel 阅读(2299) 评论(0) 推荐(0) 编辑
摘要: Implement pow(x, n). 题目:https://leetcode.com/problems/powx-n/description/ Example 1: Example 2: 阅读全文
posted @ 2017-12-13 11:52 hozhangel 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Given an array of strings, group anagrams together. For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return: 阅读全文
posted @ 2017-12-13 11:18 hozhangel 阅读(184) 评论(0) 推荐(0) 编辑
摘要: https://leetcode.com/problems/rotate-image/description/ You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockw 阅读全文
posted @ 2017-12-12 18:23 hozhangel 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Given a collection of numbers that might contain duplicates, return all possible unique permutations. For example,[1,1,2] have the following unique pe 阅读全文
posted @ 2017-12-12 16:40 hozhangel 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 文本一些冗余标点符号清洗 阅读全文
posted @ 2017-12-11 14:31 hozhangel 阅读(635) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页