Skip to content

Instantly share code, notes, and snippets.

View Simba-97's full-sized avatar
:octocat:
Coding

Hritik Kumar Singh Simba-97

:octocat:
Coding
View GitHub Profile
class Node:
def __init__(self,data,level,fval):
""" Initialize the node with the data, level of the node and the calculated fvalue """
self.data = data
self.level = level
self.fval = fval
def generate_child(self):
""" Generate child nodes from the given node by moving the blank space
either in the four directions {up,down,left,right} """
@berkorbay
berkorbay / github_desktop_ubuntu.md
Last active July 30, 2024 12:49
To install Github Desktop for Ubuntu

IMPORTANT

See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)

For the sake of "maintaining the tradition" here is the updated version.