Skip to content

Instantly share code, notes, and snippets.

View sakshamchhimwal's full-sized avatar
🎯
Focusing

Saksham Chhimwal sakshamchhimwal

🎯
Focusing
View GitHub Profile
#Gist Created By Saksham ChhimwalAt 1668695778
@sakshamchhimwal
sakshamchhimwal / 1749A.cpp
Last active November 22, 2022 06:39
This Gist Holds All The CodeForces 800 level question solutions
#include<bits/stdc++.h>
using namespace std;
int solve(){
int n,m;
cin>>n;
cin>>m;
int sum=0;
for(int i=0;i<m;i++){
int a,b;
@sakshamchhimwal
sakshamchhimwal / Hacktober23Readme.md
Created September 25, 2023 18:05
Readme.md for Hacktober Fest Project

Institute Forms

What is this project for?

This project is being primariliy focsing on the work reuqest management in IIT Dharwad. A platform to seamlessy let the users push their issues to the required authorities. It will act as medium between the users and the responsible authorites in IIT Dharwad.

Scopes of this project

@sakshamchhimwal
sakshamchhimwal / addTimer.tsx
Created October 24, 2023 20:24
Tasks Solution
// Location: app/(login)/login/page.tsx
"use client"
import { useState } from "react"
import LoginLayout from "./layout";
export default function Page() {
const [name, setName] = useState("")
const [date, setDate] = useState(Date.now().toString());
const [secs, setSecs] = useState(0);