summaryrefslogtreecommitdiff
path: root/collections/src/main.rs
blob: 7257ce2514edbd65f148673e307a97801adb6da1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
use std::collections::HashMap;

fn main() {
    //let v: Vec<i32> = Vec::new();
    //let mut v = vec![1, 2, 3, 4, 5];

    //    let third: &i32 = &v[2];
    //    println!("the third element is {}", third);
    //
    //    match v.get(2) {
    //        Some(third) => println!("third is {}", third),
    //        None => println!("no third element"),
    //    }
    //
    // for i in &mut v {
    //     *i += 10;
    //     println!("{}", *i);
    // }
    //   for i in &v {
    //       println!("{}", i);
    //   }

    //    enum SpreadsheetCell {
    //        Int(i32), 
    //        Float(f64),
    //        Text(String), 
    //    }
    //
    //    let row = vec![
    //        SpreadsheetCell::Int(3),
    //        SpreadsheetCell::Text(String::from("blue")),
    //        SpreadsheetCell::Float(10.12),
    //    ];

    //let mut s = String::new();

    //let data = "initial contents";
    //let s = data.to_string();
    //dbg!(s);
    //let s = "initial contents".to_string();
    //dbg!(s);
    //let s = String::from("initial contents");
    //dbg!(s);

    //let mut s = String::from("hello");
    //s.push_str(" world");

    //let mut s1 = String::from("hello");
    //let s2 = " world";
    //s1.push_str(s2);
    //s1.push('!');
    //dbg!(s1);

    //let s1 = String::from("Hello ");
    //let s2 = String::from("world");
    //let s3 = s1 + &s2 + "!";
    //dbg!(s3);

    //let my_result: Result<&'static str, &'static str> = Ok("test");

    //dbg!(my_result);

    //let s1 = String::from("tic");
    //let s2 = String::from("tac");
    //let s3 = String::from("toe");

    //let s = format!("{}-{}-{}", s1, s2, s3);
    //dbg!(s);

    //let s = String::from("welcome to hello world");
    //let len = s.len();
    //dbg!(len);
    //let s1 = s[0..15].to_string();
    //dbg!(s1);

    //for c in "hello world".bytes() {
    //    dbg!(c);
    //}

    //let mut scores = HashMap::new();
    //scores.insert(String::from("Blue"), 10);
    //scores.insert(String::from("Yellow"), 50);
    //scores.insert(String::from("Blue"), 20);
    //dbg!(scores);

    //let teams = vec![String::from("blue"), String::from("yellow")];
    //let initial_scores = vec![10, 20];
    //let scores: HashMap<_, _> = teams.iter().zip(initial_scores.iter()).collect();
    //dbg!(scores);

    //let field_name = String::from("favorite color");
    //let field_value = String::from("blue");

    //let mut map = HashMap::new();
    //map.insert(field_name, field_value);

    //let mut scores = HashMap::new();
    //scores.insert(String::from("blue"), 10);
    //scores.insert(String::from("yellow"), 50);

    //let team_name = String::from("blue");
    //let score = scores.get(&team_name);

    //dbg!(team_name);
    //dbg!(score);

    //let mut scores = HashMap::new();

    //scores.insert(String::from("blue"), 10);
    //scores.insert(String::from("yellow"), 50);

    //for (key, value) in &scores {
    //    dbg!(key);
    //    dbg!(value);
    //}

    // let mut scores = HashMap::new();
    // scores.insert(String::from("blue"), 10);
    // scores.entry(String::from("yellow")).or_insert(50);
    // scores.entry(String::from("blue")).or_insert(50);
    // dbg!(scores);

    //let text = "when in the course of himan events it becomes necessary for one people to dissolve the political bands which have connected them with another and to assume among the powers of the earth the separate and equal station to which thelaws of nature and of nature's God entitle them a decent respect to the opinions of mankind requires that they should declare the causes which impel them to the separation";
    //let mut map = HashMap::new();

    //for word in text.split_whitespace() {
    //    let count = map.entry(word).or_insert(0);
    //    *count += 1;
    //}

    //dbg!(map);

}