Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anthonydmays/code-differently-samples
Sample code used for Code Differently interview prep.
https://github.com/anthonydmays/code-differently-samples
Last synced: 5 days ago
JSON representation
Sample code used for Code Differently interview prep.
- Host: GitHub
- URL: https://github.com/anthonydmays/code-differently-samples
- Owner: anthonydmays
- Created: 2023-12-20T03:01:32.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-30T00:25:37.000Z (about 1 year ago)
- Last Synced: 2024-12-30T07:46:37.276Z (10 days ago)
- Language: Java
- Homepage: https://codedifferently.com/
- Size: 2.25 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Code Differently Samples
![Maven workflow](https://github.com/anthonydmays/code-differently-samples/actions/workflows/maven.yml/badge.svg)
This repository contains code samples used for the Code Differently interview preparation series.
## Prerequisites
- Java 15+
- Maven## Files to explore
| Name | Description |
| -------------------------------------------------------------------------------------------------- | ----------------------------------------------------------- |
| [/src/main/java/com/cd/utils/StringAlgos.java](/src/main/java/com/cd/utils/StringAlgos.java) | A library of string algorithms useful to know and memorize. |
| [/src/main/java/com/cd/utils/RecursiveAlgos.java](/src/main/java/com/cd/utils/RecursiveAlgos.java) | Contains functions introducing useful recursive algorithms. |
| [/src/main/java/com/cd/Session2.java](/src/main/java/com/cd/Session2.java) | Sample program illustrating how to use string algorithms. |
| [/src/test/java/com/cd/](/src/test/java/com/cd/) | All of the tests live here. |