【python/M/leetcode】Gray Code

題目 思路 這個題涉及到格雷碼,若是你從沒了解過格雷碼,請戳這裏。 我用到的方法也是最簡單的二進制碼和二進制格雷碼轉換。 python 實現代碼 class Solution: def grayCode(self, n): """ :type n: int :rtype: List[int] """ resultCodeList = [] f
相關文章
相關標籤/搜索