목록LeetCode (3)
Rylah's Study & Daily Life

LeetCode 724. Find Pivot Index https://leetcode.com/problems/move-zeroes/ Move Zeroes - 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 // 724. Find Pivot Index // Sliding Basic O(n) + O(n) => O(n) // LeetCode 724. Find Pivot Index // https://leetcode.com/problems/find-pivot-index/..

LeetCode 283. Move Zeroes https://leetcode.com/problems/move-zeroes/ Move Zeroes - 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 // Move Zeroes // One Pointer is fill index // One Pointer is find not zero // LeetCode 283. Move Zeroes // https://leetcode.com/problems/move-zeroes/ ..

LeetCode 704. Binary Search https://leetcode.com/problems/binary-search/ Binary Search - 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 #include #include int binary_search(std::vector& nums, int target) { int left = 0; int right = (int)nums.size() - 1; while (left target right = p..