a very quick Riddle
A very quick Riddler’s riddle last week with the question
Find the (integer) fraction with the smallest (integer) denominator strictly located between 1/2020 and 1/2019.
and the brute force resolution
for (t in (2020*2019):2021){ a=ceiling(t/2020) if (a*2019<t) sol=c(a,t)}
leading to 2/4039 as the target. Note that
January 23, 2020 at 2:07 pm
I see (at Riddler page) that solution by way of continued fractions is recommended.
January 23, 2020 at 8:13 am
[…] article was first published on R – Xi'an's Og, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here) […]
January 22, 2020 at 1:05 pm
[…] article was first published on R – Xi’an’s Og, and kindly contributed to R-bloggers]. (You can report issue about the content on this page […]
January 22, 2020 at 10:04 am
[…] by data_admin [This article was first published on R – Xi’an’s Og, and kindly contributed to R-bloggers]. (You can report issue about the content on this page […]