Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lalabuy948/palindromefinder
Palindrome finder
https://github.com/lalabuy948/palindromefinder
dataset golang palindrome
Last synced: 5 days ago
JSON representation
Palindrome finder
- Host: GitHub
- URL: https://github.com/lalabuy948/palindromefinder
- Owner: lalabuy948
- Created: 2018-12-30T10:44:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-30T10:45:21.000Z (almost 6 years ago)
- Last Synced: 2023-03-02T05:50:51.023Z (almost 2 years ago)
- Topics: dataset, golang, palindrome
- Language: Go
- Homepage:
- Size: 138 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Palindrome finder
> Sorting 35k words in 0.01 sec
## How to run
```sh
go run main.gogo build main
./main
```## Time
JIT
```sh
➜ time go run main.go
ротатор
go run main.go 0.21s user 0.10s system 130% cpu 0.235 total
```Compiled
```sh
➜ time ./main
ротатор
./main 0.01s user 0.00s system 86% cpu 0.019 total
```