목록Leetcode (3)
배움 저장소
https://leetcode.com/problems/subsets/ Subsets - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 1. Backtracking class Solution { public: vector subsets(vector& nums) { backtracking(nums, 0); return result; } private: vector result; vector saved; void backtracking(vector& nums, int..
첫 풀이. 벡터안에 값을 저장하고 투포인터로 비교한다. #include #include class Solution { public: bool isPalindrome(int x) { if(x
leetcode.com/problems/add-two-numbers/submissions/ Add Two Numbers - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 처음에 int형에다가 값을 저장했다가 다시 ListNode를 만들어 반환했다. 그러면 INT_MAX를 넘어서는 값이 나와서 long long 타입으로 바꾸어주었는데 그래도 long long max 를 넘는 값이 나와서 ListNode로 바로 변환해주는 방식으로 바꾸었다. 이 때 buffer를 만..