├── .gitattributes ├── .gitignore ├── Makefile ├── README.md ├── boards ├── book │ ├── c01_s03_b01.html │ ├── c01_s03_b02.html │ ├── c01_s03_b03.html │ ├── c01_s05_b01.html │ ├── c01_s05_b02.html │ ├── c01_s05_b03.html │ ├── c02_s03_b01.html │ ├── c02_s03_b02.html │ └── c02_s04_b01.html ├── index.html ├── main.css └── problems │ ├── 001_weird_algorithm_01.html │ ├── 005_permutations_01.html │ ├── 005_permutations_02.html │ ├── 005_permutations_03.html │ ├── 005_permutations_04.html │ ├── 006_number_spiral_01.html │ ├── 006_number_spiral_02.html │ ├── 007_two_knights_01.html │ ├── 007_two_knights_02.html │ ├── 007_two_knights_03.html │ ├── 007_two_knights_04.html │ ├── 007_two_knights_05.html │ ├── 008_two_sets_01.html │ ├── 008_two_sets_02.html │ ├── 008_two_sets_03.html │ ├── 008_two_sets_04.html │ ├── 008_two_sets_05.html │ ├── 010_trailing_zeros_01.html │ ├── 010_trailing_zeros_02.html │ ├── 011_coin_piles_01.html │ ├── 011_coin_piles_02.html │ ├── 011_coin_piles_03.html │ ├── 012_palindrome_reorder_01.html │ ├── 013_gray_code_01.html │ ├── 013_gray_code_02.html │ ├── 013_gray_code_03.html │ ├── 013_gray_code_04.html │ ├── 013_gray_code_05.html │ ├── 013_gray_code_06.html │ ├── 013_gray_code_07.html │ ├── 014_tower_of_hanoi_01.html │ ├── 014_tower_of_hanoi_02.html │ ├── 014_tower_of_hanoi_03.html │ ├── 015_creating_strings_01.html │ ├── 015_creating_strings_02.html │ ├── 015_creating_strings_03.html │ ├── 015_creating_strings_04.html │ ├── 015_creating_strings_05.html │ ├── 016_apple_division_01.html │ ├── 016_apple_division_02.html │ ├── 017_chessboard_and_queens_01.html │ ├── 018_digit_queries_01.html │ ├── 018_digit_queries_02.html │ └── 021_apartments.html ├── chat ├── README.md ├── chat-2021-10-19.txt ├── chat-2021-10-20.txt ├── chat-2021-10-21.txt ├── chat-2021-10-26.txt ├── chat-2021-10-27.txt ├── chat-2021-10-28.txt ├── chat-2021-11-02.txt ├── chat-2021-11-03.txt ├── chat-2021-11-16.txt ├── chat-2021-11-17.txt ├── chat-2021-11-23.txt ├── chat-2021-11-24.txt ├── chat-2021-12-07.txt ├── chat-2021-12-08.txt ├── chat-2021-12-14.txt └── chat-2021-12-15.txt ├── code ├── 001_weird_algorithm.cc ├── 002_missing_number.cc ├── 003_repetitions.cc ├── 004_increasing_array.cc ├── 005_permutations.cc ├── 006_number_spiral_01.cc ├── 006_number_spiral_02.cc ├── 006_number_spiral_03.cc ├── 006_number_spiral_04.cc ├── 007_two_knights_01.cc ├── 007_two_knights_02.cc ├── 007_two_knights_03.cc ├── 008_two_sets_01.cc ├── 008_two_sets_02.cc ├── 008_two_sets_03.cc ├── 008_two_sets_04.cc ├── 008_two_sets_05.cc ├── 009_bit_strings.cc ├── 010_trailing_zeros_01.cc ├── 010_trailing_zeros_02.cc ├── 011_coin_piles.cc ├── 012_palindrome_reorder.cc ├── 013_gray_code_01.cc ├── 013_gray_code_02.cc ├── 014_tower_of_hanoi_01.cc ├── 014_tower_of_hanoi_02.cc ├── 015_creating_strings_01.cc ├── 015_creating_strings_02.cc ├── 015_creating_strings_03.cc ├── 015_creating_strings_04.cc ├── 016_apple_division_01.cc ├── 016_apple_division_02.cc ├── 017_chessboard_and_queens_01.cc ├── 017_chessboard_and_queens_02.cc ├── 018_digit_queries_01.cc ├── 018_digit_queries_02.cc ├── 019_grid_paths_01.cc ├── 019_grid_paths_02.cc ├── 020_distinct_numbers.cc ├── 021_apartments.cc ├── Makefile └── test │ ├── 001_weird_algorithm.sh │ ├── 002_missing_number.sh │ ├── 003_repetitions.sh │ ├── 004_increasing_array.sh │ ├── 005_permutations.sh │ ├── 006_number_spiral.sh │ ├── 007_two_knights.sh │ ├── 008_two_sets.sh │ ├── 008_two_sets_03.sh │ ├── 008_two_sets_05.sh │ ├── 009_bit_strings.sh │ ├── 010_trailing_zeros.sh │ ├── 011_coin_piles.sh │ ├── 012_palindrome_reorder.sh │ ├── 013_gray_code.sh │ ├── 014_tower_of_hanoi.sh │ ├── 015_creating_strings.sh │ ├── 016_apple_division.sh │ ├── 017_chessboard_and_queens.sh │ ├── 018_digit_queries.sh │ ├── 019_grid_paths.sh │ ├── 020_distinct_numbers.sh │ ├── 021_apartments.sh │ └── test.sh ├── experiments ├── Makefile ├── ModOperator.java ├── billion_loop.cc ├── data_model.cc ├── mod_operator.c ├── mod_operator.cc ├── mod_operator.js └── mod_operator.py ├── meta ├── README.md ├── boards.html ├── boards.lisp ├── chat.lisp ├── denum.lisp ├── num.lisp └── pset.lisp ├── problemset.lisp └── problemset.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/README.md -------------------------------------------------------------------------------- /boards/book/c01_s03_b01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c01_s03_b01.html -------------------------------------------------------------------------------- /boards/book/c01_s03_b02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c01_s03_b02.html -------------------------------------------------------------------------------- /boards/book/c01_s03_b03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c01_s03_b03.html -------------------------------------------------------------------------------- /boards/book/c01_s05_b01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c01_s05_b01.html -------------------------------------------------------------------------------- /boards/book/c01_s05_b02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c01_s05_b02.html -------------------------------------------------------------------------------- /boards/book/c01_s05_b03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c01_s05_b03.html -------------------------------------------------------------------------------- /boards/book/c02_s03_b01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c02_s03_b01.html -------------------------------------------------------------------------------- /boards/book/c02_s03_b02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c02_s03_b02.html -------------------------------------------------------------------------------- /boards/book/c02_s04_b01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/book/c02_s04_b01.html -------------------------------------------------------------------------------- /boards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/index.html -------------------------------------------------------------------------------- /boards/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/main.css -------------------------------------------------------------------------------- /boards/problems/001_weird_algorithm_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/001_weird_algorithm_01.html -------------------------------------------------------------------------------- /boards/problems/005_permutations_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/005_permutations_01.html -------------------------------------------------------------------------------- /boards/problems/005_permutations_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/005_permutations_02.html -------------------------------------------------------------------------------- /boards/problems/005_permutations_03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/005_permutations_03.html -------------------------------------------------------------------------------- /boards/problems/005_permutations_04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/005_permutations_04.html -------------------------------------------------------------------------------- /boards/problems/006_number_spiral_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/006_number_spiral_01.html -------------------------------------------------------------------------------- /boards/problems/006_number_spiral_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/006_number_spiral_02.html -------------------------------------------------------------------------------- /boards/problems/007_two_knights_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/007_two_knights_01.html -------------------------------------------------------------------------------- /boards/problems/007_two_knights_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/007_two_knights_02.html -------------------------------------------------------------------------------- /boards/problems/007_two_knights_03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/007_two_knights_03.html -------------------------------------------------------------------------------- /boards/problems/007_two_knights_04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/007_two_knights_04.html -------------------------------------------------------------------------------- /boards/problems/007_two_knights_05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/007_two_knights_05.html -------------------------------------------------------------------------------- /boards/problems/008_two_sets_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/008_two_sets_01.html -------------------------------------------------------------------------------- /boards/problems/008_two_sets_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/008_two_sets_02.html -------------------------------------------------------------------------------- /boards/problems/008_two_sets_03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/008_two_sets_03.html -------------------------------------------------------------------------------- /boards/problems/008_two_sets_04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/008_two_sets_04.html -------------------------------------------------------------------------------- /boards/problems/008_two_sets_05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/008_two_sets_05.html -------------------------------------------------------------------------------- /boards/problems/010_trailing_zeros_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/010_trailing_zeros_01.html -------------------------------------------------------------------------------- /boards/problems/010_trailing_zeros_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/010_trailing_zeros_02.html -------------------------------------------------------------------------------- /boards/problems/011_coin_piles_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/011_coin_piles_01.html -------------------------------------------------------------------------------- /boards/problems/011_coin_piles_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/011_coin_piles_02.html -------------------------------------------------------------------------------- /boards/problems/011_coin_piles_03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/011_coin_piles_03.html -------------------------------------------------------------------------------- /boards/problems/012_palindrome_reorder_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/012_palindrome_reorder_01.html -------------------------------------------------------------------------------- /boards/problems/013_gray_code_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/013_gray_code_01.html -------------------------------------------------------------------------------- /boards/problems/013_gray_code_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/013_gray_code_02.html -------------------------------------------------------------------------------- /boards/problems/013_gray_code_03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/013_gray_code_03.html -------------------------------------------------------------------------------- /boards/problems/013_gray_code_04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/013_gray_code_04.html -------------------------------------------------------------------------------- /boards/problems/013_gray_code_05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/013_gray_code_05.html -------------------------------------------------------------------------------- /boards/problems/013_gray_code_06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/013_gray_code_06.html -------------------------------------------------------------------------------- /boards/problems/013_gray_code_07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/013_gray_code_07.html -------------------------------------------------------------------------------- /boards/problems/014_tower_of_hanoi_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/014_tower_of_hanoi_01.html -------------------------------------------------------------------------------- /boards/problems/014_tower_of_hanoi_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/014_tower_of_hanoi_02.html -------------------------------------------------------------------------------- /boards/problems/014_tower_of_hanoi_03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/014_tower_of_hanoi_03.html -------------------------------------------------------------------------------- /boards/problems/015_creating_strings_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/015_creating_strings_01.html -------------------------------------------------------------------------------- /boards/problems/015_creating_strings_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/015_creating_strings_02.html -------------------------------------------------------------------------------- /boards/problems/015_creating_strings_03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/015_creating_strings_03.html -------------------------------------------------------------------------------- /boards/problems/015_creating_strings_04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/015_creating_strings_04.html -------------------------------------------------------------------------------- /boards/problems/015_creating_strings_05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/015_creating_strings_05.html -------------------------------------------------------------------------------- /boards/problems/016_apple_division_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/016_apple_division_01.html -------------------------------------------------------------------------------- /boards/problems/016_apple_division_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/016_apple_division_02.html -------------------------------------------------------------------------------- /boards/problems/017_chessboard_and_queens_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/017_chessboard_and_queens_01.html -------------------------------------------------------------------------------- /boards/problems/018_digit_queries_01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/018_digit_queries_01.html -------------------------------------------------------------------------------- /boards/problems/018_digit_queries_02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/018_digit_queries_02.html -------------------------------------------------------------------------------- /boards/problems/021_apartments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/boards/problems/021_apartments.html -------------------------------------------------------------------------------- /chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/README.md -------------------------------------------------------------------------------- /chat/chat-2021-10-19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-10-19.txt -------------------------------------------------------------------------------- /chat/chat-2021-10-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-10-20.txt -------------------------------------------------------------------------------- /chat/chat-2021-10-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-10-21.txt -------------------------------------------------------------------------------- /chat/chat-2021-10-26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-10-26.txt -------------------------------------------------------------------------------- /chat/chat-2021-10-27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-10-27.txt -------------------------------------------------------------------------------- /chat/chat-2021-10-28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-10-28.txt -------------------------------------------------------------------------------- /chat/chat-2021-11-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-11-02.txt -------------------------------------------------------------------------------- /chat/chat-2021-11-03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-11-03.txt -------------------------------------------------------------------------------- /chat/chat-2021-11-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-11-16.txt -------------------------------------------------------------------------------- /chat/chat-2021-11-17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-11-17.txt -------------------------------------------------------------------------------- /chat/chat-2021-11-23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-11-23.txt -------------------------------------------------------------------------------- /chat/chat-2021-11-24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-11-24.txt -------------------------------------------------------------------------------- /chat/chat-2021-12-07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-12-07.txt -------------------------------------------------------------------------------- /chat/chat-2021-12-08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-12-08.txt -------------------------------------------------------------------------------- /chat/chat-2021-12-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-12-14.txt -------------------------------------------------------------------------------- /chat/chat-2021-12-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/chat/chat-2021-12-15.txt -------------------------------------------------------------------------------- /code/001_weird_algorithm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/001_weird_algorithm.cc -------------------------------------------------------------------------------- /code/002_missing_number.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/002_missing_number.cc -------------------------------------------------------------------------------- /code/003_repetitions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/003_repetitions.cc -------------------------------------------------------------------------------- /code/004_increasing_array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/004_increasing_array.cc -------------------------------------------------------------------------------- /code/005_permutations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/005_permutations.cc -------------------------------------------------------------------------------- /code/006_number_spiral_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/006_number_spiral_01.cc -------------------------------------------------------------------------------- /code/006_number_spiral_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/006_number_spiral_02.cc -------------------------------------------------------------------------------- /code/006_number_spiral_03.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/006_number_spiral_03.cc -------------------------------------------------------------------------------- /code/006_number_spiral_04.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/006_number_spiral_04.cc -------------------------------------------------------------------------------- /code/007_two_knights_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/007_two_knights_01.cc -------------------------------------------------------------------------------- /code/007_two_knights_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/007_two_knights_02.cc -------------------------------------------------------------------------------- /code/007_two_knights_03.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/007_two_knights_03.cc -------------------------------------------------------------------------------- /code/008_two_sets_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/008_two_sets_01.cc -------------------------------------------------------------------------------- /code/008_two_sets_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/008_two_sets_02.cc -------------------------------------------------------------------------------- /code/008_two_sets_03.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/008_two_sets_03.cc -------------------------------------------------------------------------------- /code/008_two_sets_04.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/008_two_sets_04.cc -------------------------------------------------------------------------------- /code/008_two_sets_05.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/008_two_sets_05.cc -------------------------------------------------------------------------------- /code/009_bit_strings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/009_bit_strings.cc -------------------------------------------------------------------------------- /code/010_trailing_zeros_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/010_trailing_zeros_01.cc -------------------------------------------------------------------------------- /code/010_trailing_zeros_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/010_trailing_zeros_02.cc -------------------------------------------------------------------------------- /code/011_coin_piles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/011_coin_piles.cc -------------------------------------------------------------------------------- /code/012_palindrome_reorder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/012_palindrome_reorder.cc -------------------------------------------------------------------------------- /code/013_gray_code_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/013_gray_code_01.cc -------------------------------------------------------------------------------- /code/013_gray_code_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/013_gray_code_02.cc -------------------------------------------------------------------------------- /code/014_tower_of_hanoi_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/014_tower_of_hanoi_01.cc -------------------------------------------------------------------------------- /code/014_tower_of_hanoi_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/014_tower_of_hanoi_02.cc -------------------------------------------------------------------------------- /code/015_creating_strings_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/015_creating_strings_01.cc -------------------------------------------------------------------------------- /code/015_creating_strings_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/015_creating_strings_02.cc -------------------------------------------------------------------------------- /code/015_creating_strings_03.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/015_creating_strings_03.cc -------------------------------------------------------------------------------- /code/015_creating_strings_04.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/015_creating_strings_04.cc -------------------------------------------------------------------------------- /code/016_apple_division_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/016_apple_division_01.cc -------------------------------------------------------------------------------- /code/016_apple_division_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/016_apple_division_02.cc -------------------------------------------------------------------------------- /code/017_chessboard_and_queens_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/017_chessboard_and_queens_01.cc -------------------------------------------------------------------------------- /code/017_chessboard_and_queens_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/017_chessboard_and_queens_02.cc -------------------------------------------------------------------------------- /code/018_digit_queries_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/018_digit_queries_01.cc -------------------------------------------------------------------------------- /code/018_digit_queries_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/018_digit_queries_02.cc -------------------------------------------------------------------------------- /code/019_grid_paths_01.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/019_grid_paths_01.cc -------------------------------------------------------------------------------- /code/019_grid_paths_02.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/019_grid_paths_02.cc -------------------------------------------------------------------------------- /code/020_distinct_numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/020_distinct_numbers.cc -------------------------------------------------------------------------------- /code/021_apartments.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/021_apartments.cc -------------------------------------------------------------------------------- /code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/Makefile -------------------------------------------------------------------------------- /code/test/001_weird_algorithm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/001_weird_algorithm.sh -------------------------------------------------------------------------------- /code/test/002_missing_number.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/002_missing_number.sh -------------------------------------------------------------------------------- /code/test/003_repetitions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/003_repetitions.sh -------------------------------------------------------------------------------- /code/test/004_increasing_array.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/004_increasing_array.sh -------------------------------------------------------------------------------- /code/test/005_permutations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/005_permutations.sh -------------------------------------------------------------------------------- /code/test/006_number_spiral.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/006_number_spiral.sh -------------------------------------------------------------------------------- /code/test/007_two_knights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/007_two_knights.sh -------------------------------------------------------------------------------- /code/test/008_two_sets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/008_two_sets.sh -------------------------------------------------------------------------------- /code/test/008_two_sets_03.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/008_two_sets_03.sh -------------------------------------------------------------------------------- /code/test/008_two_sets_05.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/008_two_sets_05.sh -------------------------------------------------------------------------------- /code/test/009_bit_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/009_bit_strings.sh -------------------------------------------------------------------------------- /code/test/010_trailing_zeros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/010_trailing_zeros.sh -------------------------------------------------------------------------------- /code/test/011_coin_piles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/011_coin_piles.sh -------------------------------------------------------------------------------- /code/test/012_palindrome_reorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/012_palindrome_reorder.sh -------------------------------------------------------------------------------- /code/test/013_gray_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/013_gray_code.sh -------------------------------------------------------------------------------- /code/test/014_tower_of_hanoi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/014_tower_of_hanoi.sh -------------------------------------------------------------------------------- /code/test/015_creating_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/015_creating_strings.sh -------------------------------------------------------------------------------- /code/test/016_apple_division.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/016_apple_division.sh -------------------------------------------------------------------------------- /code/test/017_chessboard_and_queens.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/017_chessboard_and_queens.sh -------------------------------------------------------------------------------- /code/test/018_digit_queries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/018_digit_queries.sh -------------------------------------------------------------------------------- /code/test/019_grid_paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/019_grid_paths.sh -------------------------------------------------------------------------------- /code/test/020_distinct_numbers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/020_distinct_numbers.sh -------------------------------------------------------------------------------- /code/test/021_apartments.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/021_apartments.sh -------------------------------------------------------------------------------- /code/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/code/test/test.sh -------------------------------------------------------------------------------- /experiments/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/Makefile -------------------------------------------------------------------------------- /experiments/ModOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/ModOperator.java -------------------------------------------------------------------------------- /experiments/billion_loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/billion_loop.cc -------------------------------------------------------------------------------- /experiments/data_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/data_model.cc -------------------------------------------------------------------------------- /experiments/mod_operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/mod_operator.c -------------------------------------------------------------------------------- /experiments/mod_operator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/mod_operator.cc -------------------------------------------------------------------------------- /experiments/mod_operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/mod_operator.js -------------------------------------------------------------------------------- /experiments/mod_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/experiments/mod_operator.py -------------------------------------------------------------------------------- /meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/meta/README.md -------------------------------------------------------------------------------- /meta/boards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/meta/boards.html -------------------------------------------------------------------------------- /meta/boards.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/meta/boards.lisp -------------------------------------------------------------------------------- /meta/chat.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/meta/chat.lisp -------------------------------------------------------------------------------- /meta/denum.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/meta/denum.lisp -------------------------------------------------------------------------------- /meta/num.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/meta/num.lisp -------------------------------------------------------------------------------- /meta/pset.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/meta/pset.lisp -------------------------------------------------------------------------------- /problemset.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/problemset.lisp -------------------------------------------------------------------------------- /problemset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/offbeatcc/cses/HEAD/problemset.md --------------------------------------------------------------------------------