Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

creating an object of a class to test a method python

From a question in Leetcode, solution is correct but wanted to test it myself in VSCode by creating an instance and then printing the result of the method twoSum. Not sure how to though.

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        count1 = 0
        for i in nums:
            count2 = 0
            for j in nums:
                if (i+j) == target and i != j:
                    return count1, count2
                count2 +=1
                
            count1 +=1


if __name__ == "__main__":
    print(twoSum([2,7,11,15],9 ))

Thanks for any help


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You first have to instantiate a Solution instance by doing -

s=Solution()

And then call the method -

s.twoSum([2, 7, 11, 15], 9)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.5k users

...