From 275bc79f21bb62d1078595326df24100d3a36346 Mon Sep 17 00:00:00 2001 From: kirbylife Date: Tue, 10 Oct 2023 00:23:18 -0600 Subject: [PATCH] Improve a bit the algorithm that choice the word of the day --- src/services/words.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/words.rs b/src/services/words.rs index df3395f..02c2e4a 100644 --- a/src/services/words.rs +++ b/src/services/words.rs @@ -14,7 +14,7 @@ pub fn get_word_of_the_day() -> String { let year = date.year() as usize; let month = date.month() as usize; let day = date.day() as usize; - let index = year + month * day; + let index = year * month * day; WORDS[index % WORDS.len()].clone() }