realstealthninja
57e670c2ee
Merge branch 'master' into LakshmiSrikumar-patch-1
2024-10-31 10:44:22 +05:30
Ritobroto Kalita
649a145234
docs, test: Fit Sieve of Eratosthenes to contributing guidelines ( #2803 )
...
* Update sieve_of_eratosthenes.cpp
* Update doc
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-29 22:38:49 +05:30
Sanskruti Pravin Yeole
db3f9d3406
Create Unbounded_knapsack.cpp ( #2786 )
...
* Create Unbounded_knapsack.cpp
* Update Unbounded_knapsack.cpp
Documentation done.
* Update dynamic_programming/Unbounded_knapsack.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update dynamic_programming/Unbounded_knapsack.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update dynamic_programming/Unbounded_knapsack.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update dynamic_programming/Unbounded_knapsack.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Delete dynamic_programming/Unbounded_knapsack.cpp
* Create Unbounded_0_1_Knapsack.cpp
* Update Unbounded_0_1_Knapsack.cpp
* Update Unbounded_0_1_Knapsack.cpp
* docs: add docs for main
* Update dynamic_programming/Unbounded_0_1_Knapsack.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update dynamic_programming/Unbounded_0_1_Knapsack.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update Unbounded_0_1_Knapsack.cpp
* Update Unbounded_0_1_Knapsack.cpp
* Update Unbounded_0_1_Knapsack.cpp
* Update dynamic_programming/Unbounded_0_1_Knapsack.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update Unbounded_0_1_Knapsack.cpp
* Update Unbounded_0_1_Knapsack.cpp
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-28 21:21:55 +05:30
Muhammad Junaid Khalid
ecb8a3388d
feat: Added Binary Addition Algorithm ( #2802 )
...
* Digit Separation Algorithm added
* feat: Added namespace greedy_algoriithms
* "Updated digit separation code: added comments and docstrings, changed data types to std::int64_t, and reformatted code."
* feat: Made test function and removed extra whitespaces
* removed some more whitespaces
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* fix: terminate multiline comment
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Corrected test function
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* remove redundant declaration
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Corrected tests
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* file clang linted
* "Moved method implementations from outside to inside class definition"
* fowardOrder to forwardOrder on line 122
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Removed Class scope resolution form digitSeparationReverseOrder function
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Removed Class scope resolution form digitSeparationForwardOrderfunction
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* docs: documentation updated
* initial commit of Binary Addition
* "Formatting changes and whitespace adjustments in binary_addition.cpp"
* Documentation added
* fix: removed unnecessary whitespaces
* fix: Fixed the case of non binary strings
* clang linted
* docs: Documentation updated
* Comments updated
* Removed link
Removed @see link in header documentation
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* clang-format and clang-tidy fixes for cd8a5953
* made `tests()` static
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* added @returns in documentation of tests function
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* added @return in documentation of main function
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-24 21:54:38 +05:30
deDSeC00720
ffef54470d
feat: LRU (Least recently used) cache - different implementation ( #2783 )
...
* feat: add lru cache
* test: add test to cover exception
* test: add assert for exception message
* review: change int to uint32_t
* review: add header for std::uint32_t
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-22 19:34:52 +05:30
Nguyen Phuc Chuong
37a9811372
docs, test: fit modular inverse fermat little theorem to contributing guidelines ( #2779 )
...
* Update modular_inverse_fermat_little_theorem.cpp
* Update modular_inverse_fermat_little_theorem.cpp
* Update modular_inverse_fermat_little_theorem.cpp
* Update modular_inverse_fermat_little_theorem.cpp
* Update math/modular_inverse_fermat_little_theorem.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update math/modular_inverse_fermat_little_theorem.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update modular_inverse_fermat_little_theorem.cpp
Add time complexity in comment
* Update modular_inverse_fermat_little_theorem.cpp
* Update modular_inverse_fermat_little_theorem.cpp
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-21 18:51:23 +05:30
github-actions[bot]
d438f0fc7f
docs: update DIRECTORY.md ( #2857 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-19 15:22:15 +05:30
Naman Jain
05d784d844
Longest Increasing subsequence using binary search most optimal approach (Modified) ( #2776 )
...
* Longest Increasing subsequence using binary search most optimal approach for this problem
* Longest Increasing subsequence using binary search most optimal approach for this problem
* Longest Increasing subsequence using binary search most optimal approach for this problem (Modified)
* Longest Increasing subsequence using binary search most optimal approach for this problem
* Longest Increasing subsequence using binary search most optimal approach for this problem(done)
* Longest Increasing subsequence using binary search most optimal approach for this problem
* Floyd warshall
* Longest Increasing subsequence using binary search most optimal approach for this problem
* Longest Increasing subsequence using binary search most optimal approach for this problem
* Longest Increasing subsequence using binary search most optimal approach for this problem
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-18 21:59:49 +05:30
DoGoodCoder
87e162cada
Merge branch 'master' into LakshmiSrikumar-patch-1
2024-10-15 16:35:52 +05:30
github-actions[bot]
e841605280
docs: update DIRECTORY.md ( #2827 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-14 18:49:11 +05:30
LakshmiSrikumar
c195a7e06b
Update non_preemptive_sjf_scheduling.cpp
2024-10-14 11:06:05 +05:30
DoGoodCoder
258c6fde61
Merge branch 'master' into LakshmiSrikumar-patch-1
2024-10-13 17:19:44 +05:30
LakshmiSrikumar
6622a645a0
Merge branch 'LakshmiSrikumar-patch-1' of https://github.com/LakshmiSrikumar/C-Plus-Plus into LakshmiSrikumar-patch-1
2024-10-13 17:18:05 +05:30
LakshmiSrikumar
6ebca75a66
Update non_preemptive_sjf_scheduling.cpp
2024-10-13 17:17:57 +05:30
DoGoodCoder
d568897529
Update cpu_scheduling_algorithms/non_preemptive_sjf_scheduling.cpp
...
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-13 16:40:07 +05:30
Harshil Shah
c2adc3b1e6
feat: Added Exponential Probability Distribution ( #2780 )
...
* Add Exponential Distribution
* Modified the documentation
* Update Documentation
* Update probability/exponential_dist.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update probability/exponential_dist.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update probability/exponential_dist.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update the files
* Removed the link from documentation
* docs: remove the second brief tag
* Update latex notation
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update latex notation
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Corrected format issues
* Update probability/exponential_dist.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update probability/exponential_dist.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update probability/exponential_dist.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Added more test, formatted with clang-format
* Update files
* Update format issues
* Add more tests
* Added namespaces
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-13 00:09:50 +05:30
LakshmiSrikumar
16d952f6fe
Update non_preemptive_sjf_scheduling.cpp
2024-10-12 16:07:46 +05:30
LakshmiSrikumar
cbbfc88fa9
Update non_preemptive_sjf_scheduling.cpp
2024-10-12 14:38:00 +05:30
DoGoodCoder
ccb3f07208
Update cpu_scheduling_algorithms/non_preemptive_sjf_scheduling.cpp
...
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-12 14:06:31 +05:30
DoGoodCoder
4404bbb427
Delete non_preemptive_sjf_scheduling.cpp
2024-10-12 11:07:12 +05:30
LakshmiSrikumar
f1338b08af
Merge branch 'LakshmiSrikumar-patch-1' of https://github.com/LakshmiSrikumar/C-Plus-Plus into LakshmiSrikumar-patch-1
2024-10-12 11:04:49 +05:30
LakshmiSrikumar
9d9b51f2d9
Create non_preemptive_sjf_scheduling.cpp
...
I have done the necessary changes.
The test function will generate 10 different testcases in which it will print the before and after the SJF scheduling.
@realstealthninja Kindly review the PR and please accept it.
2024-10-12 11:04:34 +05:30
DoGoodCoder
77402aa408
Update non_preemptive_sjf_scheduling.cpp
...
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-11 10:45:54 +05:30
DoGoodCoder
062a78c0ab
Update non_preemptive_sjf_scheduling.cpp
...
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-11 10:45:14 +05:30
DoGoodCoder
c126f7124a
Merge branch 'TheAlgorithms:master' into LakshmiSrikumar-patch-1
2024-10-11 10:43:14 +05:30
Nguyen Phuc Chuong
136e6c0ad8
docs, test: Fit bubble_sort into guidelines and enhance bubble sort algorithm ( #2800 )
...
* Update bubble_sort.cpp
* Update bubble_sort.cpp
* Update bubble_sort.cpp
Add latex notation
* Update sorting/bubble_sort.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update sorting/bubble_sort.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update bubble_sort.cpp
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-11 09:57:30 +05:30
github-actions[bot]
49ee852d06
docs: update DIRECTORY.md ( #2810 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-11 09:52:18 +05:30
LakshmiSrikumar
7af8d8ae0a
added a vector to store and print the final result
2024-10-11 00:49:46 +05:30
DoGoodCoder
8d6f3c19e6
Merge branch 'TheAlgorithms:master' into LakshmiSrikumar-patch-1
2024-10-10 22:04:21 +05:30
Ashish Kumar Sahoo
5eff2b9e2b
Create Longest_Substring_Without_Repeating_Characters.cpp ( #2761 )
...
* Create Longest_Substring_Without_Repeating_Characters.cpp
* I would like to contribute for sliding window algorithm and this one is one of the famous problem that is asked in interviews.
* Thank you!!.
* Update and rename Longest_Substring_Without_Repeating_Characters.cpp to sliding-window/Longest_Substring_Without_Repeating_Characters.cpp
* This is my contribution towards the sliding window algorithm/s and this is one of the famous problems.
* Thank you.
* Update Longest_Substring_Without_Repeating_Characters.cpp
* I would like to contribute towards the sliding window algorithm in which this is one of the famous problem asked in interviews.
* Thank you.
* Update Longest_Substring_Without_Repeating_Characters.cpp
* Updated certain changes in documentation, this is my contribution towards sliding window algorithm this is one of the famous interview problem.
* Thank you.
* Update Longest_Substring_Without_Repeating_Characters.cpp
* Well documented and tested code for sliding window algorithm.
* Thank you.
* Update and rename Longest_Substring_Without_Repeating_Characters.cpp to Longest_Substring_Without_Repeating_Characters.cpp
* So,I did a small change I added the problem into the others section I think this works fine I guess.
* I would be glad if this can be tagged as hackoctoberfest
* Thank you.
* Update and rename Longest_Substring_Without_Repeating_Characters.cpp to longest_substring_without_repeating_characters.cpp
* I hope I have done the required changes.
* Update longest_substring_without_repeating_characters.cpp
* Added specific edge cases and tests as void tests() and followed the guidelines.
* Update longest_substring_without_repeating_characters.cpp
* I hope I have made the necessary changes required.
* If there are any changes to make I can do that.
* Thank you.
* Update longest_substring_without_repeating_characters.cpp
* I have done the required changes for the include part.
* Thank you.
* Update longest_substring_without_repeating_characters.cpp
added author name
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-10 19:58:50 +05:30
DoGoodCoder
d00becf20c
Update non_preemptive_sjf_scheduling.cpp
...
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-10 18:59:12 +05:30
DoGoodCoder
b8e1b84840
Update non_preemptive_sjf_scheduling.cpp
...
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-10 18:58:51 +05:30
DoGoodCoder
ad156c94e8
Update non_preemptive_sjf_scheduling.cpp
...
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-10 18:57:51 +05:30
github-actions[bot]
34d3568b37
docs: update DIRECTORY.md ( #2804 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-10 17:16:19 +05:30
DoGoodCoder
f99fefa271
Merge branch 'master' into LakshmiSrikumar-patch-1
2024-10-09 18:45:29 +05:30
Ritobroto Kalita
512efd1861
fix: Update documentations and tests for fibonacci.cpp ( #2793 )
...
* Update fibonacci.cpp
* update documentation
* Update documentation
2024-10-09 18:45:12 +05:30
DoGoodCoder
80127bbeb6
Create non_preemptive_sjf_scheduling.cpp
2024-10-09 18:29:19 +05:30
Dhanush S
faff2177c8
feat: add recursive inserstion sort ( #2764 )
...
* added recursive insertion sort algorithm
* Modified the main function and removed user interaction as requested
* Deleted previous file
* Updated insertion_sort.cpp to its original code
* Created insertion_sort_recursive.cpp file
* Updated documentation and structure in insertion_sort_recursive.cpp
* Updated documentation in insertion_sort_recursive.cpp
* chore: remove redundant comment
* chore:Removed unnecssary whitespace
* doc: ease the brief of test
* doc: remove redundant lines from main
* chore:Removed redundant whitespace
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-08 19:34:42 +05:30
Muhammad Junaid Khalid
dd36279e73
feat: Digit Separation Algorithm added ( #2759 )
...
* Digit Separation Algorithm added
* feat: Added namespace greedy_algoriithms
* "Updated digit separation code: added comments and docstrings, changed data types to std::int64_t, and reformatted code."
* feat: Made test function and removed extra whitespaces
* removed some more whitespaces
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* fix: terminate multiline comment
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Corrected test function
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/digit_separation.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* remove redundant declaration
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Corrected tests
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* file clang linted
* "Moved method implementations from outside to inside class definition"
* fowardOrder to forwardOrder on line 122
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Removed Class scope resolution form digitSeparationReverseOrder function
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Removed Class scope resolution form digitSeparationForwardOrderfunction
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* docs: documentation updated
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-07 19:09:23 +05:30
deDSeC00720
821d20c33a
feat: LFU (Least frequently used) cache ( #2757 )
...
* feat: add lfu cache
* docs: add comments and explanation to class LFUCache
* test: add tests for class lfu cache
* docs: document namespace and classes
* test: modify tests to check negative numbers
* docs: document template params and class data members
* test: make test func static and move tests in the same func
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-07 19:02:52 +05:30
Nguyen Phuc Chuong
fddedd8864
fix: Adding documentations, tests, and amending algorithm for gcd_of_n_numbers.cpp ( #2766 )
...
* Update gcd_of_n_numbers.cpp
* Update gcd_of_n_numbers.cpp
Reformatting code, comment and test cases, change array data type.
* Update gcd_of_n_numbers.cpp
* Update gcd_of_n_numbers.cpp
* Update gcd_of_n_numbers.cpp
* Update gcd_of_n_numbers.cpp
2024-10-07 18:56:25 +05:30
Harshil Shah
b957b1dfef
feat: Add hemi-sphere area algorithm ( #2767 )
...
* Add area of hemi-sphere
* Update math/area.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-07 06:15:29 +05:30
github-actions[bot]
f9fb58fb87
docs: update DIRECTORY.md ( #2771 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-06 08:09:04 +05:30
Amine Ghoussaini
60093d70ab
feat: add duval's algorithm ( #2725 )
...
* feat: Add Duval's algorithm for the lexicographically smallest rotation in a sequence.
* fixes.
* fixes.
2024-10-05 18:22:02 +05:30
jiya
0ecb6bd28a
docs: reword binary search ( #2752 )
...
* Update binary_search.cpp
making some correction in the theory of binary search
* Update search/binary_search.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-05 08:08:23 +05:30
github-actions[bot]
51be6aad33
docs: update DIRECTORY.md ( #2754 )
...
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-10-04 23:52:19 +05:30
Divyansh-jain2
c56496d9f2
chore: use M_PI instead of PI parameter ( #2747 )
...
* changed PI variable value from 3.14 to M_PI
* changed PI variable to M_PI
* changed the degree_to_radians function
* comments removed
* docs: remove pi param
* fix: typo in function name
* changed degree to degrees
---------
Co-authored-by: [Divyansh Jain] <[jdivyansh51@gmail.com ]>
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-04 22:33:44 +05:30
B Karthik
901f231d59
feat: Added gale_shapley.cpp in greedy_algorithms ( #2743 )
...
* Added gale_shapley.cpp in greedy_algorithms
* Added gale_shapley.cpp in greedy_algorithms
* Genralized GaleShapley with reviewed change
* fix: added description
* fix: fixed nameing of namespace
* fix: reviewed changes
* fix: reviewed changes
* TestCase Empty vector
* function description
* Update greedy_algorithms/gale_shapley.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Update greedy_algorithms/gale_shapley.cpp
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
* Change type
* typechange with header documentation
---------
Co-authored-by: realstealthninja <68815218+realstealthninja@users.noreply.github.com >
2024-10-04 18:48:54 +05:30
Nguyen Phuc Chuong
cde1672dca
feat: Create gray_code.cpp ( #2750 )
...
* Create gray_code.cpp
* Update gray_code.cpp
Remove extra lines, add bit_manipulation and gray_code namespaces, add negative number test
2024-10-04 18:39:03 +05:30
Piotr Idzik
f789e3bb9e
style: cleanup catalan_numbers.cpp ( #2740 )
...
* style: cleanup `catalan_numbers.cpp`
* docs: update file level docs
* style: use `std::transform_reduce`
2024-09-29 19:24:02 +05:30