TGTGInsighttelegram intelligenceLIVE / telegram public index
Post content
帖子内容
https://hueffner.de/falk/blog/a-leap-year-check-in-three-instructions.html https://news.ycombinator.com/item?id=43999748 位运算黑魔法 bool is_leap_year_fast(uint32_t y) { return ((y * 1073750999) & 3221352463) <= 126976; }