Skip to content
Open

1 #13

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
318cf97
add (solution): add addition, check_flags, lenght_lit, print_bits, qu…
VaryVA Nov 28, 2025
190ea20
add (solution): add check_flags task
VaryVA Nov 28, 2025
58fbe23
add (solution): add length_lit task
VaryVA Nov 28, 2025
3573ba1
add (solution): add print_bits task
VaryVA Nov 28, 2025
15ec4a4
add (solution): add quadratic task
VaryVA Nov 28, 2025
3fcc0bc
add (solution): add rms task
VaryVA Nov 28, 2025
841c809
Merge branch 'main' of https://github.com/psds-cpp/psds-cpp-2025
VaryVA Dec 7, 2025
7e86b75
Merge branch 'psds-cpp:main' into main
VaryVA Dec 7, 2025
f174bae
add (solution): add func_array task
VaryVA Dec 8, 2025
2328946
Надо, я чего-то не того наделала (
VaryVA Dec 8, 2025
fc312f9
add (solution): add last_of_us task
VaryVA Dec 8, 2025
837fe51
add (solution): add little_big task
VaryVA Dec 8, 2025
6ea5c9f
add (solution): add longest task
VaryVA Dec 8, 2025
98e5d59
add (solution): add pretty_array task
VaryVA Dec 8, 2025
3a9a419
add (solution): add swap_ptr task
VaryVA Dec 8, 2025
ed70f99
Merge branch 'psds-cpp:main' into main
VaryVA Dec 18, 2025
75cb8e6
Merge remote-tracking branch 'upstream/main'
VaryVA Dec 18, 2025
fc3abfa
Merge branch 'psds-cpp:main' into main
VaryVA Dec 26, 2025
3d5c858
add (solution): add stack task
VaryVA Dec 26, 2025
8a5e0bd
Merge branch 'main' of https://github.com/VaryVA/psds-cpp-2025
VaryVA Dec 26, 2025
c52f90c
add (solution): add phasor task
VaryVA Dec 26, 2025
7dd4d11
add (solution): add queue task
VaryVA Dec 26, 2025
a6fea19
add (solution): add ring_buffer task
VaryVA Dec 26, 2025
0693b53
add (solution): add stack task
VaryVA Dec 26, 2025
39a594d
Trigger CI
VaryVA Dec 26, 2025
4d40cd2
dont push build folder please
18thday Dec 27, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions 01_week/tasks/addition/addition.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include <cstdint>
#include <stdexcept>


int64_t Addition(int a, int b) {
throw std::runtime_error{"Not implemented"};
}
return (int64_t)a + (int64_t)b;
}
Loading