标签:org bsp game color public solution false viso ret
1 public class Solution 2 { 3 public bool DivisorGame(int N) 4 { 5 if (N % 2 == 1) 6 { 7 return false; 8 } 9 else 10 { 11 return true; 12 } 13 } 14 }
标签:org bsp game color public solution false viso ret
原文地址:https://www.cnblogs.com/asenyang/p/10704658.html