Skip to content

Instantly share code, notes, and snippets.

View kaisnb's full-sized avatar
🐢
Hello World.

Kai Schönberger kaisnb

🐢
Hello World.
View GitHub Profile
@kaisnb
kaisnb / index.js
Created May 16, 2021 21:17
JavaScript Celebrity Identification Problem
class Person {
name;
knownPersons = new Set();
constructor(name) {
this.name = name;
}
add(person) {
this.knownPersons.add(person);