# -*- coding:utf-8 -*- class Solution: def GetUglyNumber_Solution(self, index): # write code here if index<7: return index p1,p2,p3 = 0,0,0 &nb...