休了几年来最长的假,也是最宅的假。每天不受控制的在微博不断刷着最新消息,不断刷新自己的认知,在痛心和焦虑中度过。期间看到有po主推荐本书,粗翻下来,作者多年在全球做的关于健康...
休了几年来最长的假,也是最宅的假。每天不受控制的在微博不断刷着最新消息,不断刷新自己的认知,在痛心和焦虑中度过。期间看到有po主推荐本书,粗翻下来,作者多年在全球做的关于健康...
吃完早点还是决定出门来围观下热闹,顺便到图书馆坐坐。受交通管制,未封路段车满为患但行人颇少,骑着共享单车,一路无阻,沿途不时的就看到几个参加mini马的健将在往回走。未出门时...
周六,例行搞完房间清洁,坐在小书桌旁玩手机,几篇消息连贯读下来,勾起些许情绪。 一、线上短讯 碰上一年一度的考研日,网上刷到一则消息称,考研大军的人数相较几年前又翻了一番,数...
导读 gradient descentmomentumRMSPropadam鞍点 gradient descent根据每次迭代时计算梯度的样本大小,可以分为bath, min...
自从大数据开始流行,“以数据说话”的要求变成了写P和汇报的日常。在图书馆偶然翻到一本书,简单统计学,用各个幽默精辟而又逻辑缜密的小例子,教你如何开穿统计结论里的小九九,有利于...
Given a sorted array and a target value, return the index if the target is found. If no...
Given an input string (s) and a pattern (p), implement regular expression matching with...
用python写一个找零钱的算法。 零钱共有50块,20块,10块,5块,和1块,共5种。。例:69 = 50 + 10 + 5 + 4 OUTPUT: {1: 4, 50:...
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordi...
Question Implement strStr(). Return the index of the first occurrence of needle in hays...
Qustion Given an array nums and a value val, remove all instances of that value in-plac...
Qustion Given a sorted array nums, remove the duplicates in-place such that each elemen...
Qustion Given a string containing just the characters '(', ')', '{', '}', '[' and ']', ...
Qustion Write a function to find the longest common prefix string amongst an array of s...
Question Roman numerals are represented by seven different symbols: I, V, X, L, C, D an...
题目 判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。 示例 1: 示例 2: 输入: -121输出: false解释: 从左向右读,...
题目 给定一个字符串,找出不含有重复字符的最长子串的长度。 示例 1: 示例 2: 示例 3: 请注意,答案必须是一个子串,"pwke" 是一个子序列 而不是子串。
题目 给定一个 32 位有符号整数,将整数中的数字进行反转。 示例 1: 示例 2: 示例 3: 注意: 假设我们的环境只能存储 32 位有符号整数,其数值范围是 。根据这个...
题目 给定两个非空链表来表示两个非负整数。位数按照逆序方式存储,它们的每个节点只存储单个数字。将两数相加返回一个新的链表。你可以假设除了数字 0 之外,这两个数字都不会以零开...