Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 1.07 KB

File metadata and controls

20 lines (15 loc) · 1.07 KB

AppVeyor Build Status Solved Problems

LeetCode

The C solutions for LeetCode problems.

Problems

Table of Contents

Problems 001-050

Back to Table of Contents

# Title Solutions Time Space Comments
1 Two Sum C(4ms) O(N) O(N)
2 Add Two Numbers C(20ms) O(Max(N, M)) O(1)
3 Longest Substring Without Repeating Characters C(8ms) O(N) O(1) C# use array will slower
5 Longest Palindromic Substring C(0ms) O(N) O(N) Use Manacher's Algorithm