Skip to content

Commit 1773aec

Browse files
committed
089-098 init
1 parent 73464bf commit 1773aec

22 files changed

+11
-1
lines changed
2.05 KB
Binary file not shown.

Algorithms/DecodeWays.cs

1.84 KB
Binary file not shown.

Algorithms/GrayCode.cs

2.33 KB
Binary file not shown.

Algorithms/InterleavingString.cs

1.56 KB
Binary file not shown.

Algorithms/RestoreIPAddresses.cs

1.54 KB
Binary file not shown.

Algorithms/ReverseLinkedListII.cs

2.01 KB
Binary file not shown.

Algorithms/SubsetsII.cs

1.7 KB
Binary file not shown.

Algorithms/UniqueBinarySearchTrees.cs

1.78 KB
Binary file not shown.
2.31 KB
Binary file not shown.
2.57 KB
Binary file not shown.
770 Bytes
Binary file not shown.

AlgorithmsTest/DecodeWaysTest.cs

706 Bytes
Binary file not shown.

AlgorithmsTest/GrayCodeTest.cs

702 Bytes
Binary file not shown.
770 Bytes
Binary file not shown.
686 Bytes
Binary file not shown.
754 Bytes
Binary file not shown.
776 Bytes
Binary file not shown.

AlgorithmsTest/SubsetsIITest.cs

740 Bytes
Binary file not shown.
756 Bytes
Binary file not shown.
718 Bytes
Binary file not shown.
742 Bytes
Binary file not shown.

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,14 @@ LeetCode
9696
|085|[Maximal Rectangle](https://leetcode.com/problems/maximal-rectangle/) | [C#](./Algorithms/MaximalRectangle.cs)|Hard|
9797
|086|[Partition List](https://leetcode.com/problems/partition-list/) | [C#](./Algorithms/PartitionList.cs)|Medium|
9898
|087|[Scramble String](https://leetcode.com/problems/scramble-string/) | [C#](./Algorithms/ScrambleString.cs)|Hard|
99-
|088|[Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/?tab=Description) | [C#](./Algorithms/MergeSortedArray.cs)|Easy|
99+
|088|[Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/?tab=Description) | [C#](./Algorithms/MergeSortedArray.cs)|Easy|
100+
|089|[Gray Code](https://leetcode.com/problems/gray-code/?tab=Description) | [C#](./Algorithms/GrayCode.cs)|Medium|
101+
|090|[Subsets II](https://leetcode.com/problems/subsets-ii/?tab=Description) | [C#](./Algorithms/SubsetsII.cs)|Medium|
102+
|091|[Decode Ways](https://leetcode.com/problems/decode-ways) | [C#](./Algorithms/DecodeWays.cs)|Medium|
103+
|092|[Reverse Linked List II](https://leetcode.com/problems/reverse-linked-list-ii) | [C#](./Algorithms/ReverseLinkedListII.cs)|Medium|
104+
|093|[Restore IP Addresses](https://leetcode.com/problems/restore-ip-addresses) | [C#](./Algorithms/RestoreIPAddresses.cs)|Medium|
105+
|094|[Binary Tree Inorder Traversal](https://leetcode.com/problems/binary-tree-inorder-traversal) | [C#](./Algorithms/BinaryTreeInorderTraversal.cs)|Medium|
106+
|095|[Unique Binary Search Trees II](https://leetcode.com/problems/unique-binary-search-trees-ii) | [C#](./Algorithms/UniqueBinarySearchTreesII.cs)|Medium|
107+
|096|[Unique Binary Search Trees](https://leetcode.com/problems/unique-binary-search-trees) | [C#](./Algorithms/UniqueBinarySearchTrees.cs)|Medium|
108+
|097|[Interleaving String](https://leetcode.com/problems/interleaving-string) | [C#](./Algorithms/InterleavingString.cs)|Hard|
109+
|098|[Validate Binary Search Tree](https://leetcode.com/problems/validate-binary-search-tree) | [C#](./Algorithms/ValidateBinarySearchTree.cs)|Medium|

0 commit comments

Comments
 (0)