Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/prallhsu/leetcode

Various algorithm topics in LeetCode
https://github.com/prallhsu/leetcode

algorithm

Last synced: about 2 months ago
JSON representation

Various algorithm topics in LeetCode

Awesome Lists containing this project

README

        

# Various algorithm topics in LeetCode

## Array

* [#01 Two Sum](Array/01-Two_Sum.cpp)
* [#04 Median of two sorted arrays](Array/04-Median_of_sorted_arrays.cpp)

## LinkedList

* [#19 Remove Nth node from end of the list]()

## Math

* [#02 Add Two Numbers](Math/02-Add_Two_Numbers.cpp)

## Two Pointers

* [#03 Longest Substring without repeating characters](Two_Pointers/3-Longest_String_WRC.cpp)
* [#11 Container with most water](Two_Pointers/11-Container_With_Most_Water.cpp)
* [#125 Valid Palindrome](Two_Pointers/125-Valid_Palindrome.cpp)
* [#15 3sum](Two_Pointers/15-3sum.cpp)
* [#16 3sum Closest](Two_Pointers/16-3sum_Closest.cpp)
* [#18 4sum](Two_Pointers/18-4sum.cpp)

## Greedy

* [#55 Jump Game](Greedy/55-Jump_Game.cpp)
* [#122 Best time to buy and sell stock II](Greedy/122-Best_time_to_buy_and_sell_stock_II.cpp)
* [#134 Gas Station](Greedy/134-Gas_Station.cpp)
* [#376 Wiggle Subsequence](Greedy/376-Wiggle_Subsequence.cpp)

## Binary Search

* [#29 Divide Two Integers](Binary_Search/29-Divide_Two_Integers.cpp)
* [#33 Search In Rotated Sorted Array](Binary_Search/33-Search_In_Rotated_Sorted_Array.cpp)
* [#34 Find First and Last Position Of a Element in sorted Array](Binary_Search/34-Find_FL_In_Sorted_Array.cpp)
* [#35 Search Insert Position](Binary_Search/35-Search_Insert_Position.cpp)
* [#50 Pow(x, n)](Binary_Search/50-Pow(x,n).py)
* [#69 Sqrt(x)](Binary_Search/69-Sqrt(x).cpp)