[LeetCode] Largest Divisible Subset 最大可整除的子集合
Posted Grandyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] Largest Divisible Subset 最大可整除的子集合相关的知识,希望对你有一定的参考价值。
Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfies: Si % Sj = 0 or Sj % Si = 0.
If there are multiple solutions, return any subset is fine.
Example 1:
nums: [1,2,3] Result: [1,2] (of course, [1,3] will also be ok)
Example 2:
nums: [1,2,4,8] Result: [1,2,4,8]
Credits:
Special thanks to @Stomach_ache for adding this problem and creating all test cases.
以上是关于[LeetCode] Largest Divisible Subset 最大可整除的子集合的主要内容,如果未能解决你的问题,请参考以下文章
#Leetcode# 179. Largest Number
LeetCode Largest Divisible Subset