Skip to content

Instantly share code, notes, and snippets.

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
ArrayDeque<Integer> stackLily = new ArrayDeque<>();
# Default ignored files
/shelf/
/workspace.xml
@Gi-Totev
Gi-Totev / css_colors.js
Created June 23, 2021 10:33 — forked from bobspace/css_colors.js
All of the CSS Color names as an array in javascript.
// CSS Color Names
// Compiled by @bobspace.
//
// A javascript array containing all of the color names listed in the CSS Spec.
// The full list can be found here: https://www.w3schools.com/cssref/css_colors.asp
// Use it as you please, 'cuz you can't, like, own a color, man.
const CSS_COLOR_NAMES = [
"AliceBlue",
"AntiqueWhite",