Skip to content

Commit 98573e0

Browse files
committed
Java Kotlin 10.2.22
1 parent 5cf7d9e commit 98573e0

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

February2022/Java/SubarraySumEqualsK.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Author : Shobhit Behl (LC : shobhitbruh)
12
class Solution {
23
public int subarraySum(int[] nums, int k) {
34
HashMap<Integer,Integer> hs=new HashMap<>();

February2022/Kotlin/SubarraySumEqualsK.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Author : Shobhit Behl (LC : shobhitbruh)
12
class Solution {
23
fun subarraySum(nums: IntArray, k: Int): Int {
34
val hs = HashMap<Int, Int>()

0 commit comments

Comments
 (0)