This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const fs = require('fs').promises; | |
const path = require('path'); | |
async function setupDebugEndpoints() { | |
const baseDir = process.cwd(); | |
// Create necessary directories | |
const dirs = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <time.h> | |
class Node | |
{ | |
public: | |
int value; | |
Node *next; | |
Node(){}; | |
Node(int value_) : value(value_), next(NULL){}; |