Skip to content

Instantly share code, notes, and snippets.

@lodado
lodado / generator.mjs
Created August 5, 2023 05:32
icon 자동 설치
/*
reference:
https://medium.com/iadvize-engineering/using-figma-api-to-extract-illustrations-and-icons-34e0c7c230fa
*/
import dotenv from 'dotenv'
import { appendFileSync, writeFileSync } from 'fs'
import fetch from 'node-fetch'
dotenv.config()
@lodado
lodado / boj1261.txt
Last active December 16, 2018 02:56
boj 1261
#include <cstdio>
#include <queue>
#include <tuple>
#define INF 987654321
using namespace std;
int row,col;
int miro[101][101]; // 가로 세로
int dist[101][101];