DavidYeLuo / LeetCode

LeetCode Journey
0 stars 0 forks source link

Build Status

Work In Progress

Trying to continue with my LeetCode journey in GitHub.

Note

Only have tested the project on Linux.

Build

Make

mkdir build
cd build
cmake ..
make -j4

Ninja

mkdir build
cd build
cmake .. -GNinja
ninja -j4

Run All Tests

cd build/bin
./LeetCodeTests

Progress

Easy

ID Problems Link
1 Two Sum Link
49 Group Anagrams Link
217 Contains Duplicate Link
242 Valid Anagram Link
303 Range Sum Query - Immutable Link
347 Top K Frequent Elements Link
682 Baseball Game Link
705 Design HashSet Link
706 Design HashMap Link
724 Find Pivot Index Link
1929 Concatenation of Array Link

Medium

ID Problems Link
36 Valid Sudoku Link
128 Longest Consecutive Sequence Link
146 LRU Cache Link
304 Range Sum Query 2D - Immutable Link
238 Product of Array Except Self Link
560 Subarray Sum Equals K Link

Hard