0% found this document useful (0 votes)
29 views3 pages

Striver Ato Z

The document lists various Java programming tasks and their corresponding file paths, focusing on data structures and algorithms. It includes completed tasks from LeetCode, such as finding the largest element in an array, checking if an array is sorted, and solving problems like Two Sum and Maximum Subarray. Additionally, it notes some tasks that were accepted but not submitted on LeetCode, along with tasks that involve searching and sorting algorithms.

Uploaded by

Jiten Ahuja
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views3 pages

Striver Ato Z

The document lists various Java programming tasks and their corresponding file paths, focusing on data structures and algorithms. It includes completed tasks from LeetCode, such as finding the largest element in an array, checking if an array is sorted, and solving problems like Two Sum and Maximum Subarray. Additionally, it notes some tasks that were accepted but not submitted on LeetCode, along with tasks that involve searching and sorting algorithms.

Uploaded by

Jiten Ahuja
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 3

============02-09-24============

D:\WorkSpace\June\Striver\src\com\java\datastructure\
LargestElementArray.java===========LargestElementInAnArray
D:\WorkSpace\June\Striver\src\com\java\datastructure\
SecondLargest.java=================HighestAndSecondHighestInJava
D:\WorkSpace\June\Programming\src\com\java\
CheckArraySort.java==========================CheckArraySortedOrNot
D:\WorkSpace\June\Striver\src\com\java\datastructure\
CheckArraySort.java================CheckArraySortedOrNot
(Done in leetcode as well:- 1752. Check if Array Is Sorted and Rotated Solved)
D:\WorkSpace\June\Programming\src\com\java\
RemoveDuplicatesLeet.java====================Remove Duplicates.
(Done in leetcode as well:- 26. Remove Duplicates from Sorted Array)

=========03-09-24==============

D:\WorkSpace\June\Striver\src\com\java\datastructure\
RotateArrayKSteps.java=============RotateArrayByKSteps.
(Done in leetcode as well:- 189. Rotate Array)

D:\WorkSpace\June\Striver\src\com\java\datastructure\
MoveZerosToEnd.java=================MoveZerosToEnd
(Done in leetcode as well:- Move Zeroes)

D:\WorkSpace\June\Striver\src\com\java\datastructure\
LongestSubArrayWithSumK.java========LongestSubArrayWithSumK
(Its not there in leetcode).

==============04-09-24===========

D:\WorkSpace\June\Striver\src\com\java\datastructure\
TwoSum.java===========================TwoSum
(These leetcode also done:- 1. Two Sum)

===============05-09-24==============
D:\WorkSpace\June\Programming\src\com\java\
SubArrayLargest.java===========================SubArrayLargest
(Done in leetcode as well:- 53. Maximum Subarray)
(Striver name:- Kadanes Algorithm maximum subarray sum)

D:\WorkSpace\June\Striver\src\com\java\datastructure\
BuyAndSellStock.java=================BuyAndSellStock
(Done in leetcode as well:- Best Time to Buy and Sell Stock)

D:\WorkSpace\June\Striver\src\com\java\datastructure\
LongestConsecutive.java=============LongestConsecutive
(Done in leetcode as well:-
128. Longest Consecutive Sequence)

D:\WorkSpace\June\Striver\src\com\java\datastructure\
SubArraySumEqualsK.java===============SubArraySumEqualsK
(Done in leetcode as well:-Subarray Sum Equals K)
Count Subarrays with given sum
===============06-09-24=================
D:\WorkSpace\June\Striver\src\com\java\datastructure\
MajorityElement.java=================MajorityElement
(Done in leetcode as well:-
229. Majority Element II)

D:\WorkSpace\June\Striver\src\com\java\datastructure\
ThreeSum.java==========================ThreeSum
(Done in leetcode as well:-
3-Sum Problem)

==============11-09-24=========

D:\WorkSpace\June\Striver\src\com\java\datastructure\
FourSum.java============================FourSum
(Leetcode not done, accepted but not submitted, getting some error in submission
but in accepted passed).

========29-11-24===============30-11-24==========

D:\WorkSpace\June\Striver\src\com\java\datastructure\
MergeSortedArray.java=============MergeSortedArray.
(Merge two sorted arrays without extra space)
D:\WorkSpace\June\Striver\src\com\java\datastructure\
MaxProductSubArray.java===========Maximum Product Subarray(LeetCode Done)
(Maximum Product Subarray)
D:\WorkSpace\June\Striver\src\com\java\datastructure\
BinarySearchFindX.java============BinarySearch
(Binary Search to find X in sorted array)
D:\WorkSpace\June\Striver\src\com\java\datastructure\
SearchInsertPosition.java=========SearchInsertPosition
(Search Insert Position)

========02-12-24==================

D:\WorkSpace\June\Striver\src\com\java\datastructure\
FindFirstAndLastSortedArray.java=========FindFirstAndLastElement
(Find the first or last occurrence of a given number in a sorted array)

==========03-12-24===========
D:\WorkSpace\June\Striver\src\com\java\datastructure\
SearchRotatedSorted.java==================SearchRotatedSortedArray
(Search in Rotated Sorted Array)
D:\WorkSpace\June\Striver\src\com\java\datastructure\
SearchRotatedSortedArrayNew.java==========SearchRotatedSortedArrayNew
(Search in Rotated Sorted Array II)
D:\WorkSpace\June\Striver\src\com\java\datastructure\
FindMinimumSortedArray.java===============FindMinimumSortedArray
(Find Minimum in Rotated Sorted Array)

========04-12-24=========06-12-24==========
D:\WorkSpace\June\Striver\src\com\java\datastructure\
SingleElementSortedArray.java=============SingleElementSortedArray
(Single element in a Sorted Array)
D:\WorkSpace\June\Striver\src\com\java\datastructure\
SplitArrayLargestSum.java=================SplitArrayLargestSum
(Split array - Largest Sum)

==========10-04-25==================
D:\WorkSpace\June\Striver\src\com\java\datastructure\
SortNumsBubbleSort.java===================SortNum

You might also like