Skip to content

Instantly share code, notes, and snippets.

View lilgallon's full-sized avatar
🇨🇵

Lilian Gallon lilgallon

🇨🇵
View GitHub Profile
@lilgallon
lilgallon / projects.md
Last active January 31, 2020 05:12
University projects

List of my University projects 🏫

Are listed here, only the projects that are on github. Some repositories may still be private because I need to clean them.

<project name>: language (tools) ~ grade

Pape Clément High School (2015 - 2016)

Game dev:

@lilgallon
lilgallon / minecraft.md
Created January 28, 2021 10:49
Best Minecraft launch options (jvm arguments)
@lilgallon
lilgallon / main.kt
Created May 7, 2021 12:33
codingame spring ai
import java.util.*
import java.io.*
import java.math.*
data class Cell (
val index: Int,
val richness: Int,
val neighbours: List<Int>
)