Skip to content

Instantly share code, notes, and snippets.

View Zippytwr's full-sized avatar
🎯
Focusing

Gafur Zippytwr

🎯
Focusing
  • Hennge
  • 11:09 (UTC +05:00)
View GitHub Profile
@Zippytwr
Zippytwr / a.js
Created May 21, 2025 11:29
Algorithm A* in javascript
class Node {
constructor(position, g = 0, h = 0, parent = null) {
this.position = position;
this.g = g;
this.h = h;
this.f = g + h;
this.parent = parent;
}
}
@Zippytwr
Zippytwr / hello.js
Last active May 14, 2025 11:44
Hello
function sayHello(){
console.log("Hello world🖐️")
}
sayHello()
@Zippytwr
Zippytwr / hello.go
Last active May 14, 2025 11:37
Hello!
package main
import "fmt"
func main() {
fmt.Println("hello world️🖐️")
}