Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 백준
- Widget
- 영상처리
- PCA
- Algorithm
- BOF
- BAEKJOON
- Computer Architecture
- llm을 활용 단어장 앱 개발일지
- MATLAB
- bloc
- FastAPI
- Got
- ARM
- Flutter
- rao
- pytorch
- C++
- DART
- Kaggle
- MDP
- system hacking
- 파이토치 트랜스포머를 활용한 자연어 처리와 컴퓨터비전 심층학습
- ML
- Stream
- study book
- fastapi를 사용한 파이썬 웹 개발
- Image Processing
- BFS
- Dreamhack
Archives
- Today
- Total
목록Bitmask (1)
Bull

오른쪽 1 제거// C++#include #include int main() { unsigned int num = 0xFFFFFFFF; while (num > 0) { std::cout (num) (num) num -= num & -num 혹은 num = num & (num - 1) 을 해주면 된다. # 결과1111111111111111111111111111111111111111111111111111111111111110111111111111111111111111111111001111111111111111111111111111100011111111111111111111111111110000111111111111111111111111111000001111111111111111..
Algorithm/Theory
2024. 8. 21. 00:34