Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 🦀️.

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)