Skip to content

Instantly share code, notes, and snippets.

View chalubhalu's full-sized avatar

Mrinal Ahlawat chalubhalu

  • Hyderarbad
View GitHub Profile
#include<bits/stdc++.h>
using namespace std;
//9 to 6
int main()
{
int i, j, k, t, n, m;
cin >> n >> m;
vector<vector<int>> assigned(n);
vector<int> time_room(n, 18);
vector<int> meet[4][4];
@chalubhalu
chalubhalu / EditWithSublimeText3.bat
Created January 4, 2016 08:05
Add "Edit with Sublime Text 3" to Windows Context Menu for all file types and folders (Along with Sublime Text Icon)
@echo off
SET exPath=C:\Program Files\Sublime Text 3\sublime_text.exe
rem For all File Types
@reg add "HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text 3" /t REG_SZ /v "" /d "Edit with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%exPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Edit with Sublime Text 3\command" /t REG_SZ /v "" /d "%exPath% \"%%1\"" /f
rem For Folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Edit with Sublime Text 3" /t REG_SZ /v "" /d "Edit with Sublime Text 3" /f