Skip to content

Commit

Permalink
docs: Edit readme and citation
Browse files Browse the repository at this point in the history
  • Loading branch information
oboukli committed Mar 24, 2024
1 parent b1e7379 commit f52d5a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
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

0 comments on commit f52d5a8

Please sign in to comment.