摘要:
3. Longest Substring Repeating Character Difficulty:Medium The link: https://leetcode.com/problems/longest substring without repeating characters/ Des 阅读全文
摘要:
2. Add Two numbers Difficulty:Medium The Link https://leetcode.com/problems/add two numbers/ Description Solutions: Solution A: Brute force attack (暴力 阅读全文
摘要:
1 Two Sum Difficulty: Easy The Link: https://leetcode.com/problems/two sum/description/ Description : Solutions Solution A: 暴力解法 two loop runtime:7496 阅读全文
摘要:
if \_\_name\_\_ == '\_\_main\_\_': make a script both importable and executable Don't BiuBiu, show me your code : 直接执行上述代码,将在屏幕上打印we are in __main__ 说 阅读全文
摘要:
查看linux系统信息 uname a 输出内容分析: uname s 内核名称 uname n 节点名称 uname r 内核的发型号 uname v 内核版本 uname m 机器硬件名称 uname p 处理器类型 uname i 硬件平台 uname O 操作系统 查看linux时Cento 阅读全文
摘要:
K Nearest neighbor (个人观点,仅供参考。) [TOC] k 近邻算法,第一个机器学习算法,非常有效且易掌握,本文将主要探讨k 近邻算法的基本理论和使用距离侧量的算法分类物品;最后通过k 近邻算法改进约会网站和手写数字识别系统。文章内容参考《机器学习实战》 K 近邻分类算法 简单的 阅读全文