写点什么

匆忙的一周 ARTS 第二周

用户头像
困到清醒
关注
发布于: 2020 年 06 月 01 日
匆忙的一周 ARTS第二周

一、Algorithm

题目:657. 机器人能否返回原点

解答:

/**
* @param {string} moves
* @return {boolean}
*/
const judgeCircle = function(moves) {
let x = 0;
let y = 0;
for(let i = 0; i < moves.length; i++) {
if (moves[i] === "R") {
x++;
}else if(moves[i] === "L") {
x--;
}else if(moves[i] === "U") {
y++;
}else if(moves[i] === "D") {
y--;
}
}
return !x && !y
};



二、Review

Introduce to Vue.js With a Simple Project

TodoList小例子,五脏俱全讲解了vue.js的特点。$eimt一直没搞懂啥意思,这次重新查了官网文档:触发当前实例上的事件。附加参数都会传给监听器回调。

Vue.component('welcome-button', {
template: `
<button v-on:click="$emit('welcome')">
Click me to be welcomed
</button>
`
})

三、Tip

什么是HTML语义?为什么会有各式各样的标签?怎样让你的网站让google第一个搜到?

搜索引擎没有眼睛,需要通过标签的语义去判断一个页面中什么是重点。而google搜索关键字,也会先找重点的标签中的内容。用视觉障碍的群体去理解语义会更彻底些。当你看不见paragraph是paragraph,p标签的语义就出现了。

四、Share

找一篇十年前的博客看看。

https://coolshell.cn/articles/3363.html

用户头像

困到清醒

关注

还未添加个人签名 2019.01.16 加入

还未添加个人简介

评论

发布
暂无评论
匆忙的一周 ARTS第二周