LeetCode 283. Move Zeroes
Description https://leetcode.com/problems/move-zeroes/ Given an integer array nums, move all 0‘s to the end of it while maintaining the relative order of the…
Be a Good Techer and Tech for Good. www.goodtecher.com
Description https://leetcode.com/problems/move-zeroes/ Given an integer array nums, move all 0‘s to the end of it while maintaining the relative order of the…
Description https://leetcode.com/problems/intersection-of-two-arrays-ii/ Given two integer arrays nums1 and nums2, return an array of their intersection. Each element in the result must appear as many…
Description https://leetcode.com/problems/rotate-array/ Given an array, rotate the array to the right by k steps, where k is non-negative. Example 1: Input: [1,2,3,4,5,6,7] and k…
Description https://leetcode.com/problems/contains-duplicate/ Given an array of integers, find if the array contains any duplicates. Your function should return true if…
Description https://leetcode.com/problems/plus-one/ You are given a large integer represented as an integer array digits, where each digits[i] is the ith digit of the integer. The digits are…
Description https://leetcode.com/problems/reverse-string/ Write a function that reverses a string. The input string is given as an array of characters char[]. Do…
Description https://leetcode.com/problems/maximum-subarray/ Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum…
1 – Variable Reverse Integer Fizz Buzz 2 – Loops, Function & OOP if, for, while Palindrome Number Swap Two…
Description https://leetcode.com/problems/design-linked-list/ Design your implementation of the linked list. You can choose to use the singly linked list or the doubly…
Description https://leetcode.com/problems/climbing-stairs/ You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In…