Skip to content

Instantly share code, notes, and snippets.

@MnRac
MnRac / yo.clj
Last active November 14, 2019 20:34 — forked from vijaykiran/yo.clj
(ns untitled.core
(:require [clojure.string :as str]))
(def file (slurp "/Users/mariano/Downloads/input.txt"))
(def room-names (str/split file #"\n"))
(def encrypted-names
(map #(second (re-matches #"(.*)-[0-9]*\[.*\]$" %1)) room-names))