变化中的不变
The secret to that is to focus on the things that don’t change in your buisiness.
——Jeff Bezos
来源:https://medium.com/
亚马逊CEO贝佐斯有句话说,
别人都在思考未来什么会变,
他思考什么不会变。
Given a string containing just the characters '('
, ')'
, '{'
, '}'
, '['
and ']'
, determine if the input string is valid.
An input string is valid if:
Note that an empty string is also considered valid.
笔者理工科在读研究生,从高中开始嗜读科普读物,开始参加化学竞赛,与自然科学结下不解之缘。本科专业方向金属加工相关,也由于项目原因接触过能源材料相关课题(锂电、电催化),同时多次参加创新创业项目及数学建模竞赛,结识了不少不同专业的同学。因此笔者斗胆认为,相对于同龄人,本人还是具有较强的跨学科意识的,习惯于进入新的(研究)领域。
我是一个理工科在读研究生。生于父母均为经管类教授的家庭,却从高中开始嗜读科普读物,自此与自然科学结下不解之缘。
Given a string S
and a character C
, return an array of integers representing the shortest distance from the character C
in the string.
Example 1:
1 | Input: S = "loveleetcode", C = 'e' |
Note:
S
string length is in [1, 10000].
C
is a single character, and guaranteed to be in string S
.S
and C
are lowercase.众所周知,现象不等于本质。所谓“本质”,一定是隐藏在现象背后的“真理”。
但如果现象与本质不同,那二者又究竟是何种关系呢?为什么我们需要透过现象才能看到本质,而不能直接看到本质?
笔者最近看到一篇文章,又重新思考起这个问题来。