@Jerry2008Leetcode每日一题 —— 877. 石子游戏 中发帖

注意到偶数堆,先手必胜,故有: 
bool stoneGame(int* piles, int pilesSize) {
    return true;
}
 
 
Back to Top