]> git.scottworley.com Git - tablify/commitdiff
Sort column counts
authorScott Worley <scottworley@scottworley.com>
Mon, 19 Aug 2024 18:28:02 +0000 (11:28 -0700)
committerScott Worley <scottworley@scottworley.com>
Mon, 19 Aug 2024 18:52:36 +0000 (11:52 -0700)
src/lib.rs

index c7271f3932965c7a2f64712764307af83e1ec593..fcf5dc822e790b15b377e6c154669f6b07524c71 100644 (file)
@@ -69,16 +69,21 @@ fn read_rows(input: impl std::io::Read) -> impl Iterator<Item = Result<RowInput,
 }
 
 #[cfg(test)]
-fn column_counts(rows: &[RowInput]) -> HashMap<String, usize> {
-    rows.iter()
+fn column_counts(rows: &[RowInput]) -> Vec<(usize, String)> {
+    let mut counts: Vec<_> = rows
+        .iter()
         .flat_map(|r| r.entries.iter().collect::<HashSet<_>>().into_iter())
-        .fold(HashMap::new(), |mut counts, e| {
-            counts
-                .entry(String::from(e))
-                .and_modify(|c| *c += 1)
+        .fold(HashMap::new(), |mut cs, e| {
+            cs.entry(String::from(e))
+                .and_modify(|n| *n += 1)
                 .or_insert(1);
-            counts
+            cs
         })
+        .into_iter()
+        .map(|(col, n)| (n, col))
+        .collect();
+    counts.sort();
+    counts
 }
 
 pub fn tablify(_input: &impl std::io::Read) -> String {
@@ -191,7 +196,7 @@ mod tests {
                     .collect::<Result<Vec<_>, _>>()
                     .unwrap()
             ),
-            HashMap::from([(String::from("bar"), 1), (String::from("baz"), 1)])
+            vec![(1, String::from("bar")), (1, String::from("baz"))]
         );
         assert_eq!(
             column_counts(
@@ -199,7 +204,7 @@ mod tests {
                     .collect::<Result<Vec<_>, _>>()
                     .unwrap()
             ),
-            HashMap::from([(String::from("bar"), 1), (String::from("baz"), 2)])
+            vec![(1, String::from("bar")), (2, String::from("baz"))]
         );
         assert_eq!(
             column_counts(
@@ -207,7 +212,7 @@ mod tests {
                     .collect::<Result<Vec<_>, _>>()
                     .unwrap()
             ),
-            HashMap::from([(String::from("bar"), 1), (String::from("baz"), 2)])
+            vec![(1, String::from("bar")), (2, String::from("baz"))]
         );
     }
 }