Skip to content

Instantly share code, notes, and snippets.

View jiminkk's full-sized avatar

Jasmine Kim jiminkk

  • New York
View GitHub Profile
@jiminkk
jiminkk / tic-tac-toe.mjs
Created September 5, 2023 18:27
A simple tic tac toe.
import * as readline from 'node:readline';
import { stdin as input, stdout as output } from 'node:process';
const rl = readline.createInterface({ input, output });
// initialize game with empty board
let board = [
[null, null, null],
[null, null, null],
[null, null, null]
@jiminkk
jiminkk / hw #1.markdown
Last active February 21, 2016 00:03
hw #1