Skip to content

Instantly share code, notes, and snippets.

View jenska's full-sized avatar
🏠
Working from home

Jens jenska

🏠
Working from home
  • Best Secret
  • Bavaria, Germany
  • 13:53 (UTC +02:00)
View GitHub Profile
/* The Computer Language Benchmarks Game
https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
contributed by Ralph Ganszky
Added dummy element to tuple (because I read an article that this helps
to block less writing back to memory) and store data in
UnsafedMutablePointer to reduce overhead of array access.
modified by Patrick Sy
@jenska
jenska / main.go
Created February 4, 2021 13:27
JSON unmarshaller for custom types
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"strings"
"time"
)