Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Edit readme and citation #42

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cff-version: 1.2.0
title: Solutions to miscellaneous coding problems in C/C++
title: Solutions to miscellaneous programming problems in C/C++
message: If you use this software, kindly cite it using these metadata.
type: software
authors:
Expand All @@ -8,7 +8,7 @@ authors:
repository-code: https://github.com/oboukli/misc-problem-solutions
abstract: >-
Coding showcases, and solutions written in C/C++ for
miscellaneous coding problems.
miscellaneous programming problems.
keywords:
- algorithms
- c90
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Solutions to miscellaneous coding problems in C/C++

This is a repository of modern coding showcases, and solutions to various
coding problems, written in C90, and C++17, C++20, and C++23.
programming problems, written in C90, and C++17, C++20, and C++23.

## Technical showcases

Expand All @@ -23,7 +23,6 @@ and ideas leveraged by this project:
- Conventional Commits
- GitHub Actions CI
- Benchmarking using nanobench
- GitHub CodeQL
- Microsoft DevSkim
- EditorConfig
- Markdown
Expand All @@ -35,15 +34,15 @@ and ideas leveraged by this project:
| Bubble sort | C++20 | `src/sorting/bubble_sort.cpp` |
| Contains duplicate | C++20 | `src/contains_duplicate.cpp` |
| Factorial | C++23 | `src/factorial.cpp` |
| Fibonacci | C++20 | `src/fibonacci.cpp` |
| Fibonacci sequence | C++20 | `src/fibonacci_sequence.cpp` |
| First missing positive | C++20 | `src/first_missing_positive.cpp` |
| Fizz buzz | C++17 | `src/fizzbuzz.cpp` |
| Greatest common divisor | C++17 | `src/gcd.cpp` |
| Insertion sort | C++20 | `src/sorting/insertion_sort.cpp` |
| Least recently used (LRU) cache | C++20 | `src/lru_cache.cpp` |
| Move zeroes | C++20 | `src/move_zeroes.cpp` |
| Multiples of 3 or 5 | C++17 | `src/project_euler/p0001_multiples_of_3_or_5.cpp` |
| Multiples of three or five | C++17 | `src/project_euler/p0001_multiples_of_3_or_5.cpp` |
| Nth Fibonacci number | C++20 | `src/fibonacci.cpp` |
| Number of Ships in a Rectangle | C++20 | `src/sonar.cpp` |
| Palindrome | C++17 | `src/palindrome.cpp` |
| Palindrome (in C) | C90 | `src/palindrome.c` |
Expand All @@ -64,7 +63,7 @@ may, or may not, follow best practice guidelines.

### Problem licenses

Problem copyrights are reserved to their owners.
Problem copyrights are reserved to their respective owners.

### Solution licenses

Expand Down
Loading