Flexbox是一種一維佈局方式,用來分配空間和對齊項目
核心概念
Flex Container (容器):設定display:flex的父元素
Flex...
/* 各種顏色格式範例 */
.color-examples {
/* 顏色名稱 */
color: red;
background-color:...
垂直居中
css
.align-center {
display: flex;
align-items: center;
height: 100px...
Move Zeroes (LeetCode 283, Two Pointers)
解題思路
使用 快慢指針:
slow:下一個非零要放的位置
fast:遍歷...
Rotate Array (LeetCode 189)
thoughts
將陣列右旋轉 k 步。
常見解法:
使用額外陣列 (O(n) 空間)
反轉法 (O...
要在minecraft中新增合成表,要先到data資料夾新增rubymod/recipes,之後在recipes資料夾內放上2個json檔案,名字可以任意取(建...