Leetcode subsets II

Source: Internet
Author: User

Given a collection of integers that might contain duplicates, Nums, return all possible subsets.

Note:

    • Elements in a subset must is in non-descending order.
    • The solution set must not contain duplicate subsets.

For example,
If nums = [1,2,2] , a solution is:

[  2],  [1],  [1,2,2],  [2,2], [up  ],  []]

With Leetcode subsets

The difference is that there is a need to improvise a copy of an array, only one element at a time, rather than using ANS-[x] to remove all elements of x in ans.

defSubsets_with_dup (Nums) sub ([nums.sort],0) EnddefSub (ans,start=0) T=ans.length (start...t).|i|Ans[i].each Do|x|Temp=ans[i].dup temp.length.times do|j|ifTEMP[J] = =x Temp.delete_at (j) BreakEnd End ans<<temp unless ans.include? (temp) End endreturnAnsifAns[-1].empty? Sub (ans,t) End

Leetcode subsets II

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.