本文整理汇总了Python中solution.Solution.combinationSum2方法的典型用法代码示例。如果您正苦于以下问题:Python Solution.combinationSum2方法的具体用法?Python Solution.combinationSum2怎么用?Python Solution.combinationSum2使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类solution.Solution
的用法示例。
在下文中一共展示了Solution.combinationSum2方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Solution
# 需要导入模块: from solution import Solution [as 别名]
# 或者: from solution.Solution import combinationSum2 [as 别名]
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from solution import Solution
cands = [2, 2, 2, 2]
target = 6
sol = Solution()
res = sol.combinationSum2(cands, target)
print(res)
示例2: test_2
# 需要导入模块: from solution import Solution [as 别名]
# 或者: from solution.Solution import combinationSum2 [as 别名]
def test_2():
sol = Solution()
candidates, target = [2, 2, 2], 2
key = [[2]]
ans = sol.combinationSum2(candidates, target)
assert sorted(key) == sorted(ans)
示例3: test1
# 需要导入模块: from solution import Solution [as 别名]
# 或者: from solution.Solution import combinationSum2 [as 别名]
def test1(self):
input = [23,32,22,19,29,15,11,26,28,20,34,5,34,7,28,33,30,30,16,33,8,15,28,26,17,10,25,12,6,17,30,16,6,10,23,22,20,29,14,5,6,5,5,6,29,20,34,24,16,7,22,11,17,7,33,21,13,15,29,6,19,16,10,21,21,28,8,6]
target = 27
s = Solution()
res = s.combinationSum2(input, target)
print res
示例4: test_1
# 需要导入模块: from solution import Solution [as 别名]
# 或者: from solution.Solution import combinationSum2 [as 别名]
def test_1():
sol = Solution()
candidates, target = [10, 1, 2, 7, 6, 1, 5], 8
key = [[1, 7], [1, 2, 5], [2, 6], [1, 1, 6]]
ans = sol.combinationSum2(candidates, target)
assert sorted(key) == sorted(ans)
示例5: test3
# 需要导入模块: from solution import Solution [as 别名]
# 或者: from solution.Solution import combinationSum2 [as 别名]
def test3(self):
input = [1, 1, 1, 1, 1, 1]
target = 4
s = Solution()
res = s.combinationSum2(input, target)
print res