Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kerthcet/leetcode-rs
LeetCode written in Rust 🦀️.
https://github.com/kerthcet/leetcode-rs
leetcode rust
Last synced: 22 days ago
JSON representation
LeetCode written in Rust 🦀️.
- Host: GitHub
- URL: https://github.com/kerthcet/leetcode-rs
- Owner: kerthcet
- License: apache-2.0
- Created: 2021-06-27T15:23:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-15T16:40:10.000Z (6 months ago)
- Last Synced: 2024-10-29T10:47:15.264Z (2 months ago)
- Topics: leetcode, rust
- Language: Rust
- Homepage:
- Size: 45.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LeetCode-In-Rust
[LeetCode](https://leetcode.cn/u/kerthcet) written in Rust 🦀️. Just for fun.
## Table of Contents
- [Algorithms](#algorithms)
- [Top Interview 150](#top-interview-150)
- [Top 100 Liked](#top-100-liked)
- [Data Structures](#data-structures)
- [Queue](#queue)
- [Linked List](#linked-list)## Algorithms
### Top Interview 150
- [Majority Element](./src/algos/majority_element.rs)
- [Merge Sorted Array](./src/algos/merge_sorted_array.rs)
- [Remove Element](./src/algos/remove_element.rs)
- [Remove Duplicates from Sorted Array](./src/algos/remove_duplicates.rs)
- [Remove Duplicates from Sorted Array II](./src/algos/remove_duplicates_2.rs)
- [Rotate Array](./src/algos/rotate_array.rs)### Top 100 Liked
- [Container With Most Water](./src/algos/container_with_most_water.rs)
- [Find All Anagrams in a String](./src/algos/find_anagrams.rs)
- [Group Anagrams](./src/algos/group_anagrams.rs)
- [Longest Substring Without Repeating Characters](./src/algos/length_of_longest_substring.rs)
- [Longest Consecutive Sequence](./src/algos/longest_consecutive_sequence.rs)
- [Move Zeros](./src/algos/move_zeros.rs)
- [Three Sum](./src/algos/three_sum.rs)
- [Two Sum](./src/algos/two_sum.rs)
- [Trapping Rain Water](./src/algos/trapping_rain_water.rs)## Data Structures
### Queue
- [FIFO](./src/data-structures/fifo.rs)
### Linked List
- [Doubly Linked List](./src/data-structures/doubly_linked_list.rs)
- [Singly Linked List](./src/data-structures/singly_linked_list.rs)