-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (46 loc) · 1.85 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
[profile.release]
lto = true
[workspace]
members = [
"leetcode-two-sum",
"codility-possible-string-palindrome",
"codility-binary-gap",
"codility-array-rotation",
"leetcode-queue-reconstruction-by-height",
"leetcode-add-two-numbers",
"leetcode-basic-calculator-ii",
"leetcode-car-pooling",
"leetcode-subtract-the-product-and-sum-of-digits-of-an-integer",
"leetcode-longest-word-in-dictionary-through-deleting",
"leetcode-check-if-number-has-equal-digit-count-and-digit-value",
"leetcode-numbers-with-same-consecutive-differences",
"leetcode-design-a-stack-with-increment-operation",
"leetcode-jump-game-iv",
"leetcode-longest-substring-without-repeating-characters",
"leetcode-furthest-building-you-can-reach",
"leetcode-build-an-array-with-stack-operations",
"university-of-princeton-quick-find",
"university-of-princeton-quick-union",
"university-of-princeton-weighted-quick-union",
"university-of-princeton-path-compressed-weighted-quick-union",
"university-of-princeton-path-compressed-weighted-quick-union-social",
"university-of-princeton-path-compressed-weighted-quick-union-canonical-element",
"university-of-princeton-path-compressed-percolation-threshold-via-monte-carlo-simulation",
"university-of-princeton-3sum",
"gg-kadanes-algorithm",
"leetcode-k-concat-max-sum",
"adaface-rust-tricky-quiz",
"gg-minimize-the-heights",
"leetcode-reverse-an-array-recursive",
"sorting-algorithms",
"leetcode-roman-to-integer",
"leetcode-palindrome-number",
"leetcode-longest-common-prefix",
"leetcode-valid-parentheses",
"leetcode-merge-two-sorted-lists",
"leetcode-remove-duplicates-from-sorted-array",
"leetcode-sqrtx",
"leetcode-find-the-index-of-the-first-occurrence-in-a-string",
"oracle-linked-list-unique-elements",
]
resolver = "2"