https://github.com/nikiforovall/leetcode-playground-fsharp-template
https://github.com/nikiforovall/leetcode-playground-fsharp-template
fsharp leetcode leetcode-fsharp
Last synced: 3 months 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 (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-17T13:20:20.000Z (over 3 years ago)
- Last Synced: 2025-02-12T11:53:55.242Z (5 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

[](./LICENSE.md)
[](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. |