What is CI CD pipeline? a series of steps that must be performed in order to deliver a new version of software (bulding > testing > deploying) CI Continous Integration help...
[Tail] Merge Sorted Array
โ Merge Sorted Arrayโ in LeetCode (Easy) ๐ Problem https://leetcode.com/problems/merge-sorted-array/ ๐ Answer The point put data from the last index to first index (descending order) class...
[Easy] Plus One
โPlus Oneโ in LeetCode (Easy) ๐ Problem https://leetcode.com/problems/plus-one/ ๐ Answer class Solution { public int[] plusOne(int[] digits) { for (int i = digits.length - ...
[Java String methods] Implement strStr()
โ Implement strStr()โ in LeetCode (Easy) ๐ Problem https://leetcode.com/problems/implement-strstr/ ๐ Answer The Point String methods : contains(), indexOf() reference: https:...
[Easy] Remove Duplicates from Sorted Array
โRemove Duplicates from Sorted Arrayโ in LeetCode (Easy) ๐ Problem https://leetcode.com/problems/remove-duplicates-from-sorted-array/ ๐ Answer class Solution { public int removeDuplicates(i...