Notice
Recent Posts
Recent Comments
목록2018/10 (45)
준호씨의 블로그
Vimo 앱으로 동영상 쉽게 편집하고 올리기
얼마전 방구석 리뷰룸에서 Vimo 라는 앱 소개를 받고 설치 해서 사용해 보는 중이다. 쉽고 편리하게 동영상을 편집할 수 있었다. 추천추천.
크리에이터
2018. 10. 28. 23:59
LeetCode 1. Two Sum C++ 풀이
단순 방법 풀이 class Solution { public: vector twoSum(vector& nums, int target) { vector answer(2); int right = nums[1]; unsigned long length = nums.size(); for (int i = 0; i < length; i++) { int left = nums[i]; for (int j=i+1; j
개발이야기/PS - Problem Solving, 알고리즘
2018. 10. 25. 23:39