Skip to content

Instantly share code, notes, and snippets.

View Mostafayehya's full-sized avatar
🎯
Focusing

Mostafa Yehya Mostafayehya

🎯
Focusing
View GitHub Profile
@Mostafayehya
Mostafayehya / Learning Spring Resources.md
Last active March 10, 2024 10:04
Java Backend starter kit
@Mostafayehya
Mostafayehya / CircBufferRunner.java
Created April 1, 2018 08:06 — forked from hardik-vala/CircBufferRunner.java
Simple Java implementation of a circular buffer allowing appends and removes.
import java.util.Arrays;
import java.util.Scanner;
/**
* Runs commands for circular buffer
* @author Hardik Vala
*/
class CircBufferRunner {