前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【原创对话】The Grain with Snowdreams:牛顿也不懂重力

【原创对话】The Grain with Snowdreams:牛顿也不懂重力

作者头像
宇宙之一粟
发布于 2020-10-26 02:18:08
发布于 2020-10-26 02:18:08
5070
举报
文章被收录于专栏:宇宙之_一粟宇宙之_一粟

开篇介绍

故事主人公:The grain(宇宙之一粟)The snowdream(雨雪之一梦)

The grain:他是一个热爱读书和技术的理工科秃头男,他没什么擅长的,除了啰嗦。尤其、特别喜欢跟snowdream讲他学到的一些什么东西,涉及范围千奇百怪,也不是什么新鲜知识,但是他就是不厌其烦的爱啰嗦。

The snowdream:听名字就很美有没有,她是一个啥也不喜欢,只爱无敌买买买的追剧掉发女,有时很傻很有趣,有时也很文静。

故事开始了

The grain:“笨蛋,你来说说什么是重力呗...”

The snowDream:“x,一边去”

“你说说嘛”

“我很重,所以会掉下来。行了吧”

“...好像也对,你说的就是重力的体现。你太厉害了”

“你怕不是一个傻子吧”

“不是,今天,我刚看到一个不可思议的点,牛顿自己竟然说他不知道为什么有重力”

Issac Newton爵士(艾萨克·牛顿)私下向一些朋友承认:他知道重力的表现,但不知道重力的原理! ——Lily Tomlin

重力的表现

The gain: “你看,一本书与地面之间如果有距离,书会掉下到地面上;一个苹果长在树上,成熟后就掉下来了,刚好砸在牛顿的头上。这个就是重力的表现!”

The snowDream: “这个苹果真幸运,砸牛顿头上,他能建立牛顿三大定律;要是咋我头上,我能当场立马睡在树下。”(砸晕过去了...)

“...这事你的确可以做到的。不过你想一想牛顿为什么说他不懂重力的原理呢。”,“ 我们看一辆手推车,我们用手去推车,车就会走了。但是这个重力是怎么传导的,牛顿说他解释不了…”

“那然后呢?”

后来呢

等我更新

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
暂无评论
推荐阅读
LeetCode 3. Longest Substring Without Repeating Characters题目分析
样例 例如,在"abcabcbb"中,其无重复字符的最长子字符串是"abc",其长度为 3。
desperate633
2018/08/22
3360
LeetCode Problem 3: Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters.
剑影啸清寒
2019/05/26
3620
Leetcode3——Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters.
Tyan
2019/05/25
3260
LeetCode——Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for “abcabcbb” is “abc”, which the length is 3. For “bbbbb” the longest substring is “b”, with the length of 1.
全栈程序员站长
2022/01/04
1720
LeetCode——Longest Substring Without Repeating Characters
题目: Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the lengt
felixzhao
2018/03/16
6450
Leetcode 题目解析之 Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.
ruochen
2022/02/13
1.2K0
3. Longest Substring Without Repeating Characters(无重复字符的最长子串)
Given a string, find the length of the longest substring without repeating characters.
砖业洋__
2023/05/06
1370
3. Longest Substring Without Repeating Characters(无重复字符的最长子串)
LeetCode - Longest Substring Without Repeating Characters
最近启动了刷 LeetCode 的进程,Accepted 了几道题,但两天不到就忘了,即使是留了注释,想想写写笔记还是蛮有必要的,但我不希望不经思考整理就贴一堆代码,把博客搞的乱糟糟的,像 XSDN、XX园、X书 一样,所以也只是想把一些印象深刻的部分,留个笔记。
zgq354
2019/11/24
4620
LeetCode Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters.
2018/09/04
3560
Leetcode 题目解析之 Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For "bbbbb" the longest substring is "b", with the length of 1.
ruochen
2022/01/14
1.3K0
003. 无重复字符的最长子串 | Leetcode题解
题目要求连续, 我们考虑使用滑动窗口。而这道题就是窗口大小不固定的滑动窗口题目,然后让我们求满足条件的窗口大小的最大值,这是一种非常常见的滑动窗口题目。
苏南
2020/12/16
5490
003. 无重复字符的最长子串 | Leetcode题解
Sliding Window - 3. Longest Substring Without Repeating Characters
3. Longest Substring Without Repeating Characters
ppxai
2020/09/23
3060
leetcode刷题(3)——无重复字符的最长子串
输入: “abcabcbb” 输出: 3 解释: 因为无重复字符的最长子串是 “abc”,所以其长度为 3。 示例 2:
老马的编程之旅
2022/06/22
2010
【图解】三种解法不断优化带你手撕 LeetCode第三号题:无重复字符的最长子串
索引从字符串的第一位开始,将后面的字符依次加入到 set 里面。如果 set 里面已经有了该字符,此次循环结束,内循环结束后记录 size。字符串的每一位都用这种方法去计算,得到的最大的 size 即是答案。
帅地
2019/12/19
7850
【图解】三种解法不断优化带你手撕 LeetCode第三号题:无重复字符的最长子串
No.003 Longest Substring Without Repeating Characters
Longest Substring Without Repeating Characters Total Accepted: 167158 Total Submissions: 735821 Difficulty: Medium Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which
mukekeheart
2018/02/27
6410
LeetCode 1-5题 详解 Java版 (三万字 图文详解 LeetCode 算法题1-5 =====>>> <建议收藏>)
给定一个数组和一个目标和,从数组中找两个数字相加等于目标和,输出这两个数字的下标。
猫头虎
2024/04/07
2370
LeetCode 1-5题 详解 Java版 (三万字 图文详解 LeetCode 算法题1-5 =====>>> <建议收藏>)
LeetCode-3-无重复字符的最长字串
首先挨个比较i个字符和i+1结合哈希的方法是失败的,这样求的不适用于dvdf这样的测试用例
benym
2022/07/14
1930
力扣3-无重复字符的最长子串
暴力求解 复杂度分析 时间复杂度O(n^2) 空间复杂度O(m) class Solution { public int lengthOfLongestSubstring(String s) { int res = 0; for(int i = 0; i < s.length(); i++) { Set<Character> set = new HashSet<>(); for(int j = i; j
后端码匠
2021/08/18
2470
LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:
版权声明:欢迎转载,请注明出处,谢谢。 https://blog.csdn.net/boling_cavalry/article/details/86655675
程序员欣宸
2019/05/26
6630
LeetCode3. Longest Substring Without Repeating Characters
题目 Given a string, find the length of the longest substring without repeating characters. Examples: Given “abcabcbb”, the answer is “abc”, which the length is 3. Given “bbbbb”, the answer is “b”, with the length of 1. Given “pwwkew”, the answer is “wke”, w
用户1665735
2018/06/20
5310
推荐阅读
相关推荐
LeetCode 3. Longest Substring Without Repeating Characters题目分析
更多 >
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档