Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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. |