Roman numerals are represented by seven different symbols: I
, V
, X
, L
, C
, D
and M
.
【LeetCode】0011. Container With Most Water
Given n non-negative integers $a_1, a_2, …, a_n$ , where each represents a point at coordinate $(i, a_i)$. n vertical lines are drawn such that the two endpoints of line i is at $(i, a_i)$ and $(i, 0)$. Find two lines, which together with x-axis forms a container, such that the container contains the most water.
【LeetCode】0009. Palindrome Number
Determine whether an integer is a palindrome. An integer is a palindrome when it reads the same backward as forward.
【LeetCode】0008. String to Integer (atoi)
Implement atoi
which converts a string to an integer.
【LeetCode】0007. Reverse Integer
Given a 32-bit signed integer, reverse digits of an integer.
【Git】修改 Git commits 的作者資訊
前一陣子,用公司電腦寫自己的 code,結果…啊啊啊啊, git 的作者資訊顯示的是公司帳號阿 QAQ
原本想說回家後,用 git cherry-pick
一個 commit 一個 commit 搬移後,再重新 commit。結果發現…靠!有將近 20 個 commit ,這樣搬會瘋掉的。
【Vue.js 學習筆記】10. Vue Router
本節內容包含下述子章節:
- 使用 Vue Router 及配置路由文件
- 新增路由路徑及連結
- 製作巢狀路由頁面
- 使用動態路由切換頁面 Ajax 結果
- 命名路由,同一個路徑載入兩個頁面元件
- Vue Router 參數設定
- 自定義切換路由方法
【Vue.js 學習筆記】09. Vue Cli 的建置與運作原理
本節內容包含下述子章節:
- 為什麼要學 Vue Cli
- Vue Cli 2.x 與 Vue Cli 3.x 課程說明
- 如何使用 Vue Cli
- Vue Cli 所產生的資料夾結構說明
- Webpack 腳本介紹 及 自定義環境變數
- 安裝套件在 Vue Webpack 中
【Vue.js 學習筆記】08. Vue 常用 API
本節內容包含下述子章節:
- 使用 Extend 避免重複造輪子
- Filter 自訂畫面資料呈現格式
- 無法寫入的資料,用 set 搞定他
- Mixin 混合其它的元件內容
- 使用 Directive 開發自己的互動 UI
【Vue.js 學習筆記】07. JavaScript ES6
本節內容包含下述子章節:
- 使用 let 與 const 宣告變數
- 展開與其餘參數
- 縮寫
- 箭頭函式與傳統函式
- 字串模板 Template String
- 常用陣列方法
- 測驗 2: ES6 小測驗