/LeetCode-CS

The C# solutions for LeetCode Problems

Primary LanguageC#

Dotnet CI Maintainability Rating Solved Problems

LeetCode

Interview Prep, the C# solutions for LeetCode problems.

Problems

Table of Contents

Problems 301-350

# Title Solution Time Space Comment
344 Reverse String c# O(n) O(1) Used Two Pointer approach.

Problems 351-400

# Title Solution Time Space Comment
392 Is Subsequence c# O(n) O(1) Used Two Pointer approach.

Problems 951-1000

# Title Solution Time Space Comment
977 Squares Of A Sorted Array c# O(n) O(n) Use Two Pointer approach with anoter variable to keep track of the end index of the the other output array