Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 466 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 466 Bytes

Class 2 June 4, 2024

Lesson 2

Homework 2

Homework

1. There are 1429 staked validators today. (June 2024)

4.

rust - reverse an array

fn main() {
    let mut array = [1, 2, 3, 4,];
    array.reverse();
    println!("{:?}", array);   
}