Skip to content

Instantly share code, notes, and snippets.

View tobySolutions's full-sized avatar
:octocat:
Building Software

Tobiloba Adedeji tobySolutions

:octocat:
Building Software
View GitHub Profile
@tobySolutions
tobySolutions / .tsx
Last active December 16, 2023 16:46
Context stuff
import { createContext, useContext, ReactNode, useState } from 'react';
// Define the type for user information
interface User {
id: number;
username: string;
}
// Define the type for the context
interface AppContextProps {
@tobySolutions
tobySolutions / time_excercise.md
Created November 24, 2022 21:45 — forked from nonsocode/time_excercise.md
Time complexity

Q1.

def f():
	int a[N + 1][M + 1][K + 1]
	sum = 0
	for i = 1 to N:
		for j = i to M:
			for k = j to K:
				sum += a[i][j]
	print(sum)