-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
50 lines (50 loc) · 2.25 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[workspace]
members = [
"algorithms/0001.Two Sum",
"algorithms/0002.Add Two Numbers",
"algorithms/0005.Longest Palindromic Substring",
"algorithms/0011.Container With Most Water",
"algorithms/0013.Roman to Integer",
"algorithms/0020.Valid Parentheses",
"algorithms/0035.Search Insert Position",
"algorithms/0070.Climbing Stairs",
"algorithms/0071.Simplify Path",
"algorithms/0088.Merge Sorted Array",
"algorithms/0121.Best Time to Buy and Sell Stock",
"algorithms/0191.Number of 1 Bits",
"algorithms/0215.Kth Largest Element in an Array",
"algorithms/0240.Search a 2D Matrix II",
"algorithms/0242.Valid Anagram",
"algorithms/0314.Vertical Order Traversal of a Binary Tree",
"algorithms/0413.Arithmetic Slices",
"algorithms/0524.Longest Word in Dictionary through Deleting",
"algorithms/0575.Distribute Candies",
"algorithms/0581.Shortest Unsorted Continuous Subarray",
"algorithms/0594.Longest Harmonious Subsequence",
"algorithms/0645.Set Mismatch",
"algorithms/0784.Letter Case Permutation",
"algorithms/0785.Is Graph Bipartite?",
"algorithms/0821.Shortest Distance to a Character",
"algorithms/0856.Score of Parentheses",
"algorithms/0881.Boats to Save People",
"algorithms/0946.Validate Stack Sequences",
"algorithms/0991.Broken Calculator",
"algorithms/1091.Shortest Path in Binary Matrix",
"algorithms/1249.Minimum Remove to Make Valid Parentheses",
"algorithms/1329.Sort the Matrix Diagonally",
"algorithms/1337.The K Weakest Rows in a Matrix",
"algorithms/1342.Number of Steps to Reduce a Number to Zero",
"algorithms/1437.Check If All 1's Are at Least Length K Places Away",
"algorithms/1631.Path With Minimum Effort",
"algorithms/1641.Count Sorted Vowel Strings",
"algorithms/1646.Get Maximum in Generated Array",
"algorithms/1649.Create Sorted Array through Instructions",
"algorithms/1657.Determine if Two Strings Are Close",
"algorithms/1658.Minimum Operations to Reduce X to Zero",
"algorithms/1658.Minimum Operations to Reduce X to Zero",
"algorithms/1662.Check If Two String Arrays are Equivalent",
"algorithms/1663.Smallest String With A Given Numeric Value",
"algorithms/1679.Max Number of K-Sum Pairs",
"algorithms/1680.Concatenation of Consecutive Binary Numbers",
"algorithms/utils"
]