Skip to content

Instantly share code, notes, and snippets.

@Addelec
Addelec / Solution.ipynb
Last active November 1, 2025 12:16
Robot Baseball - Solution
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Addelec
Addelec / cmp
Created July 15, 2025 18:23
A string comparison utility
#!/bin/bash
# If input is piped, read from stdin
if [ ! -t 0 ]; then
read -r input
else
input="$1"
shift
fi
@Addelec
Addelec / solution.ipynb
Created June 2, 2025 12:25
Number Cross 5 - Solver
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.