LeetCode Username
Jashan1212
Problem Number, Title, and Link
https://leetcode.com/problems/subarray-sum-equals-k/
Bug Category
Problem examples
Bug Description
class Solution(object):
def subarraySum(self, nums, k):
return 2
For this problem even above mentioned code is working kindly add some test cases to correct it
Language Used for Code
Python/Python3
Code used for Submit/Run operation
class Solution(object):
def subarraySum(self, nums, k):
return 2
Expected behavior
error
Screenshots
Additional context
No response