---
title: "Relearning Rust"
url: https://daily.dev/posts/relearning-rust-wxfejafdm
source_url: https://daily.dev/posts/relearning-rust-wxfejafdm
type: freeform
source: "Misfits Developers"
author: "Lsama"
published: 2024-12-07T03:03:04.993Z
updated: 2024-12-07T03:03:16.723Z
tags: ["github", "rust"]
reading_time: 1
upvotes: 14
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Relearning Rust

**[Misfits Developers](https://daily.dev/sources/misfitsdevelopers)** · [@lsama](https://daily.dev/lsama) · 1 min read · 14 upvotes · 0 comments

## Summary

The post details the author's recent experience with relearning Rust, highlighting a 3-hour session focused on borrowing, slicing, and creating projects such as a pig-latin translator and unique word counters. It also mentions the comparative advantages of arrays over hash sets and hash maps in certain scenarios, despite arrays being harder to use. The author shares a link to their GitHub for those interested in the mini-projects.

## Content

So I started learning rust again recently and I wanted to share my progress,
This was just a small 3-hour thinker session in Rust and just practicing borrowing, slicing, and making things like pig-latin translator and unique_word counters which in Rust isn't as automated as Python 
also

This language is black magic

```rust

sorted_chars.sort_by(|a, b| b.1.cmp(&a.1));

```

I also found out that most times (still depending on the use case) Arrays > Hashsets, and HashMaps but arrays are harder to use

Here is a link to my GitHub if you want to check this mini project out [Link](https://github.com/LsamaisNotyoUr-frIend/BorrowingAndOwnership.git)

Thank you so much for reading
Have a wonderful day

## Similar posts on daily.dev

- [Don’t just attend KubeCon \+ CloudNativeCon, Merge Forward your experience\!](https://daily.dev/posts/don-t-just-attend-kubecon-cloudnativecon-merge-forward-your-experience--l0rpp73x8) · CNCF · 0 upvotes · 0 comments
- [Announcing H2 2026 KCDs](https://daily.dev/posts/announcing-h2-2026-kcds-m96goajm1) · CNCF · 1 upvotes · 0 comments
- [Two months of Open Community Groups](https://daily.dev/posts/two-months-of-open-community-groups-asf52zhbs) · CNCF · 0 upvotes · 0 comments
- [CNCF Unveils Schedule for KubeCon \+ CloudNativeCon Europe 2026](https://daily.dev/posts/cncf-unveils-schedule-for-kubecon-cloudnativecon-europe-2026-ikhcoa5cb) · CNCF · 2 upvotes · 0 comments
- [CNCF Debuts KubeCon \+ CloudNativeCon Japan 2026 Schedule](https://daily.dev/posts/cncf-debuts-kubecon-cloudnativecon-japan-2026-schedule-xp5pyudub) · CNCF · 1 upvotes · 0 comments

---

Tags: [#github](https://daily.dev/tags/github), [#rust](https://daily.dev/tags/rust)

[View this post on daily.dev](https://daily.dev/posts/relearning-rust-wxfejafdm)
