ShallowFeather

@ShallowFeather

Joined on Mar 25, 2021

  • contributed by < ShallowFeather > 開發環境 $ uname -r 5.15.0-67-generic $ gcc --version gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0 $ lscpu 架構: x86_64 CPU 作業模式: 32-bit, 64-bit
     Like  Bookmark
  • contributed by < ShallowFeather > Reviewed by ItisCaleb 程式碼的改動可以附上 git commit 的連結 改動 dudect 時,應該去解釋改動的意義 開發環境 Windows 11 WSL2 $ gcc --version
     Like  Bookmark
  • contributed by < ShallowFeather > 測驗 1 uint64_t next_pow2(uint64_t x) { x |= x >> 1; x |= x >> 1; x |= x >> 1; x |= x >> 1; x |= x >> 1;
     Like  Bookmark