Skip to content

Some leetcode problems solution, Please note the license!

License

Notifications You must be signed in to change notification settings

MrZoidberg/leetcode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Purpose

Some algorithm coding training

Problems

Two Sum

Code: Leetcode\TwoSum\TwoSum.cs
Problem: https://leetcode.com/problems/two-sum/
Performance report: https://mrzoidberg.github.io/leetcode/Reports/Leetcode.TwoSum.TwoSumTests-report.html

Reverse Integer

Code: Leetcode\ReverseInteger\ReverseInteger.cs
Problem: https://leetcode.com/problems/reverse-integer/
Performance report: https://mrzoidberg.github.io/leetcode/Reports/Leetcode.ReverseInteger.ReverseIntegerTests-report.html

Palindrome Number

Code: Leetcode\PalindromeNumber\PalindromeNumber.cs
Problem: https://leetcode.com/problems/palindrome-number/

Remove Duplicates From Sorted Array

Code: Leetcode\RemoveDuplicates\RemoveDuplicates.cs
Problem: https://leetcode.com/problems/remove-duplicates-from-sorted-array/

Best Time to Buy and Sell Stock II

Code: Leetcode\MaxProfit\MaxProfit.cs
Problem: https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/

Rotate array

Code: Leetcode\RotateArray\RotateArray.cs
Problem: https://leetcode.com/explore/featured/card/top-interview-questions-easy/92/array/646/
Performance report: https://mrzoidberg.github.io/leetcode/Reports/Leetcode.RotateArray.RotateArrayTests-report.html

Intersection of Two Linked Lists

Code: Leetcode\IntersectionTwoLinkedLists\IntersectionTwoLinkedLists.cs Problem: https://leetcode.com/problems/intersection-of-two-linked-lists/

Unique BST

Code: Leetcode\UniqueBST\UniqueBST.cs Problem: https://leetcode.com/problems/unique-binary-search-trees/