題目 On aninfinitenumber line, the position of the i-th stone is given bystones[i]. Call a stone anendpoint stoneif it has the smallest or largest position. Each turn, you pick up an endp
Redux 屬於典型的“百行代碼,千行文檔”,其中核心代碼非常少,但是思想不簡單,可以總結為下面兩點: 全局狀態唯一且不可變(Immutable) ,不可變的意思是當需要修改狀態的時候,用一個新的來替換,而不是直接在原數據上做更改: let store = { foo: 1, bar: 2 }; // 當需要更新某個狀態的時候 // 創建