저처럼 Javascript 를 좋아하는 사람들이 어플을 간단하게 나마 만들 수 있도록 제 지식을 공유하려고 합니다. 전문성 있는...
데브업
2달 간의 안드로이드 개발을 하고나서 느낀점을 기록 개발을 시작하게 된 계기 설연휴에 심심해서 한 번 해보고...
var node = new DoublyLinkedListNode(); node.data = data; if (head == null) { return node; }...
Given a sorted array and a target value, return the index if the target is found. If...
Write an algorithm to determine if a number is “happy”. A happy number is a number defined...
Given a sorted array nums, remove the duplicates in-place such that each element appear only once and return the new length. Do...
Merge two sorted linked lists and return it as a new list. The new list should be...
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string...
Implement pow(x, n), which calculates x raised to the power n (xn).Power n (xn)으로 x를 계산하는 pow (x, n)을 구현합니다. /** * @param...
Write a function to find the longest common prefix string amongst an array of strings.If there is...