Skip to content

Instantly share code, notes, and snippets.

View arnabanimesh's full-sized avatar

Arnab Animesh Das arnabanimesh

View GitHub Profile
@arnabanimesh
arnabanimesh / read_data.c
Last active January 10, 2023 20:59
read a file with three tab separated columns. Ignore the first column, the second column is a string, the third column is a number.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_LINE_LENGTH 1024
typedef struct
{
char *SKU;
long *count;
@arnabanimesh
arnabanimesh / rustlings.cmd
Created January 2, 2021 16:03
Rustlings Windows Runner using VSCode and Windows Terminal
@REM RUSTLINGS Environment variable should point to the Rustlings folder containing the exercises
@echo off
setlocal enableDelayedExpansion
if %RUSTLINGS%==%RUSTLINGS% (
cd %RUSTLINGS%
wt -d . rustlings watch
start "" "%LOCALAPPDATA%\Programs\Microsoft VS Code\Code" .
exit
)
@arnabanimesh
arnabanimesh / tsp_ortools.ipynb
Last active March 4, 2024 10:31
tsp implementations in or_tools (single core only, ORTools v9.9.3903, Ubuntu 22.04 LTS WSL2)
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.