# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param index int整型 # @return int整型 #思想2**x 3**y 5**z class Solution: def GetUglyNumber_Solution(self , index: int) -> int: # write code here if index == 0: return 0 res = [1] # 目标数组 a,b,c = 0,0,0 # 初始...