Skip to content

Instantly share code, notes, and snippets.

View ibd1279's full-sized avatar
🇫🇷

Jason Watson ibd1279

🇫🇷
View GitHub Profile
@ibd1279
ibd1279 / main.go
Created December 10, 2021 21:06
Simple program that converts a uint32 to a pointer.
package main
import (
"fmt"
"unsafe"
)
import "C"
func main() {
@ibd1279
ibd1279 / knapsack.go
Created August 2, 2016 16:11
Exploring the performance of different solutions to the 0-1 Knapsack Problem.
package main
import (
"log"
"sort"
"sync"
"time"
)
type Item struct {