Skip to content

Instantly share code, notes, and snippets.

View debdutdeb's full-sized avatar
🩸

Debdut Chakraborty debdutdeb

🩸
View GitHub Profile
@debdutdeb
debdutdeb / md.md
Created November 29, 2023 08:37
Testing github's markdown implementation
@debdutdeb
debdutdeb / main.go
Created March 3, 2024 18:48
Code for different number theory algorithms in golang ofc
package main
import "fmt"
func gcd(a, b int) int {
var fun func(int, int) int
fun = func(l, h int) int {
r := h % l
if r == 0 {