Solving Leetcode problems in Rust
- Two Sum:
lc_001_two_sum
- Count Good Meals:
lc_002_count_good_meals
- Valid Parentheses:
lc_003_valid_parentheses
- Best Time to Buy and Sell Stock:
lc_004_best_time_to_buy_and_sell_stock
- Maximum Subarray:
lc_005_maximum_subarray
- Insert Interval:
lc_006_overlapping_intervals
- 01 Matrix:
lc_007_01_matrix
- K Closest Points to Origin:
lc_008_k_closest_points_to_origin
- Jump Game:
lc_009_jump_game
- Jump Game II:
lc_010_jump_game_2
- Longest Substring without Repeating Characters:
lc_011_longest_substring_without_repeating_characters
- Product of Array except Self:
lc_012_product_of_array_except_self
Full disclosure: I was inspired by UncleScientist to do it this way, specially the testing.
This was autogenerated from my Rust script, check out: src/main.rs.