Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lalabuy948/palindromefinder

Palindrome finder
https://github.com/lalabuy948/palindromefinder

dataset golang palindrome

Last synced: 5 days ago
JSON representation

Palindrome finder

Awesome Lists containing this project

README

        

# Palindrome finder

> Sorting 35k words in 0.01 sec

## How to run

```sh
go run main.go

go 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
```