From d1f03fb3ddeb4256e4f18fc5c13df2f9a7f914cc Mon Sep 17 00:00:00 2001 From: Philippe BAUCOUR Date: Fri, 31 Jan 2025 11:01:39 +0100 Subject: [PATCH] typo --- docs/06_programmation/python/003_happy_numbers/happy_numbers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/06_programmation/python/003_happy_numbers/happy_numbers.md b/docs/06_programmation/python/003_happy_numbers/happy_numbers.md index a27e7cf..f69341d 100644 --- a/docs/06_programmation/python/003_happy_numbers/happy_numbers.md +++ b/docs/06_programmation/python/003_happy_numbers/happy_numbers.md @@ -304,7 +304,7 @@ int main() { ``` The timing is similar. -I suspect the optimizer is doing a great job. I did'nt look at assembly language but you can use [Compiler Explorer](https://godbolt.org/) to do so. It is **always** very interesting. Read this [article]({%link docs/02_simple_os/002_sos_2_le_retour_20_ans_apres_episode_2%}) to see a real case where looking to assembly language was **THE** solution. +I suspect the optimizer is doing a great job. I did'nt look at assembly language but you can use [Compiler Explorer](https://godbolt.org/) to do so. It is **always** very interesting. Read this [article]({%link docs/02_simple_os/002_sos_2_le_retour_20_ans_apres_episode_2/sos_2_le_retour_20_ans_apres_episode_2.md%}) to see a real case where looking to assembly language was **THE** solution. Again, even on [Compiler Explorer](https://godbolt.org/), make sure to select C++ 20 or later otherwise the ``n_set.contains(n_current)`` function call is not be available.