diff --git a/Teemo Attacking b/Teemo Attacking new file mode 100644 index 00000000..3844edd5 --- /dev/null +++ b/Teemo Attacking @@ -0,0 +1,20 @@ +class Solution { + public int findPoisonedDuration(int[] t, int d) { + int n = t.length; + if(n == 0) + return 0; + int total = d; + int last = t[0] + d; + for(int i = 1;i