출처 : letcode난이도 : easyInput: nums = 2,7,11,15, target = 9Output: 0,1Explanation: Because nums0 + nums1 == 9, we return 0, 1알고리즘 : 부르트포스 알고리즘시간복잡도 : O(
문제 정보 출처 : letcode 난이도 : easy Input: x = 121 Output: true Explanation: 121 reads as 121 from left to right and from right to left 내풀이 앞뒤가 같은 수를 구해야해

출처 : letcode난이도 : easy문제Given a roman numeral, convert it to an integer.예제Input: s = "MCMXCIV"Output: 1994Explanation: M = 1000, CM = 900, XC = 90 and

문제 정보출처 : letcode난이도 : easy문제Write a function to find the longest common prefix string amongst an array of strings.If there is no common prefix, retur
출처 : letcode난이도 : easy문제Given a string s containing just the characters '(', ')', '{', '}', '' and '', determine if the input string is valid.An input
출처 : leetcode난이도 : easy문제Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appe
출처 : leetcode난이도 : easy문제Given two strings s and t, determine if they are isomorphic.Two strings s and t are isomorphic if the characters in s can be
출처 : leetcode난이도 : easy문제Given two strings s and t, return true if t is an anagram of s, and false otherwise.An Anagram is a word or phrase formed by
퀵 정렬은 pivot을 하나 구해놓고, pivot보다 작은 수와 pivot보다 큰 수의 위치를 바꿔주는 정렬이다. 이 정렬은 이름과 같이 정렬 중 빠른 정렬로 많이 사용된다.pivot은 5이다.start는 pivot + 1, end는 배열의 마지막 값으로 정한다.piv