Skip to content

Instantly share code, notes, and snippets.

View croizier's full-sized avatar

Valéry Croizier croizier

View GitHub Profile
@croizier
croizier / index.html
Created January 7, 2024 23:22
2-look OCLL
<!doctype html>
<meta charset="utf-8">
<title>OCLL</title>
<style>
td {
text-align: center;
font-size: smaller;
width: 100px;
}
</style>
@croizier
croizier / gist:ab42105305aa4f113cfd
Created June 30, 2015 15:41
Java string concatenation vs string builder
package tostring;
public class Main {
public static void main(String[] args) {
int n = 1000, iterations = 10000;
long len, t0, t1;
// string builder: < 1 second
len = 0;