Skip to content

Instantly share code, notes, and snippets.

View ourai's full-sized avatar
🤟
I ♥ OSS

Ourai L. ourai

🤟
I ♥ OSS
View GitHub Profile
@ourai
ourai / get-water-from-water-dispenser.ts
Last active December 2, 2019 08:57
Get water from water dispenser
type WaterVolume = number;
interface IPerson {
id: number; // 人员标识
competent: boolean; // 是否有能力换水
altruistic: boolean; // 是否乐于助人
}
// 所有员工
const staffs: IPerson[] = [];