You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
Replies to message #5,547
-
🇵🇦 Nuestro primer dominio localizado está en español en
kiwifarms.pa. Our first localized domain is on Spanish on
kiwifarms.pa.
Sadly, your code runs in O(n) time, to make it run in O(1) time you should change it to instead just use a for loop from 0 to MAXINT(looks like...
That's a perfect case for C++ constexpr and templates.
template<typename T>
requires(std::is_integral_v<T>)
class TableOfEvenNumbers {
public...
Small brain: Use modulo
Medium brain: Write a recursive function
Big brain: Create a giant if/else chain or switch statement
Galaxy brain: Use...