Home
YUHA๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป
Cancel

[Development] CI / CD

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...