package
0.0.0-20250227122322-59689edd5517
Repository: https://github.com/ardanlabs/gotraining.git
Documentation: pkg.go.dev

# README

CPU Caches

Understanding how the hardware works is a critical component to understanding how to write the most performant code you can. Knowing the basics of processor caching can help you make better decisions within the scope of writing idiomatic code.

Arrays

Please review the section on arrays for more details behind these benchmark tests.

Review Documentation on arrays

Code Review

Caching (Go Playground
Tests (Go Playground)


All material is licensed under the Apache License Version 2.0, January 2004.

# Functions

ColumnTraverse traverses the matrix linearly down each column.
LinkedListTraverse traverses the linked list linearly.
RowTraverse traverses the matrix linearly down each row.