Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikiforovall/leetcode-playground-fsharp-template
https://github.com/nikiforovall/leetcode-playground-fsharp-template
fsharp leetcode leetcode-fsharp
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nikiforovall/leetcode-playground-fsharp-template
- Owner: NikiforovAll
- License: mit
- Created: 2021-11-17T12:36:45.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-17T13:20:20.000Z (about 3 years ago)
- Last Synced: 2024-10-31T22:23:40.725Z (2 months ago)
- Topics: fsharp, leetcode, leetcode-fsharp
- Language: F#
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Leetcode-playground-fsharp
![.NET](https://github.com/NikiforovAll/leetcode-playground-fsharp-template/workflows/.NET/badge.svg)
[![GitHub License](https://img.shields.io/github/license/nikiforovall/leetcode-playground-fsharp-template)](./LICENSE.md)
[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/NikiforovAll/leetcode-playground-fsharp-template)This template allows you to solve leetcode problems locally via F#.
Leetcode url:
| # | Title | Solution | Basic idea (One line) |
|---| ----- | -------- | --------------------- |
| 1 | [Two Sum](https://leetcode.com/problems/two-sum/) | 1.two-sum.fs | 1. Hash O(n) and O(n) space.
2. Sort and search with two points O(n) and O(1) space. |