Byte Me.

Cover Image for Exploring Graph Algorithms

Exploring Graph Algorithms

Graphs are fundamental data structures in computer science, representing relationships between entities. From social networks to transportation systems, graphs model complex connections effectively. In this post, we’ll dive into two foundational graph traversal algorithms: Breadth-First Search (BFS) and Depth-First Search (DFS).

Tan Guven
Tan Guven
Cover Image for What is string in Go?

What is string in Go?

In Go (Golang), a string is a sequence of Unicode characters and serves as a built-in data type for representing text. Strings in Go are immutable, meaning that once a string is created, its contents cannot be changed directly. Although you can manipulate strings using various functions, these operations always produce new strings rather than modifying the original ones.

Tan Guven
Tan Guven
Cover Image for A Byte-Sized Hello to the World

A Byte-Sized Hello to the World

I’m just a developer with a caffeine dependency and a love for solving puzzles. My posts are like my code: sometimes elegant, sometimes messy, but always mine. Consider this blog a peek into my world—one byte at a time.

Tan Guven
Tan Guven