hacktoberfest_2022
hacktoberfest_2022 copied to clipboard
Make your first Pull Request on Hacktoberfest 2022. Don't forget to spread love and if you like give us a ⭐️contribute in this repo i will start accepting the pr from 14 of oct
/** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode() : val(0), left(nullptr), right(nullptr) {} * TreeNode(int...
Adds a Notepad in Python created using Tkinter and various python modules.
Corrected links to point to this repository and corrected repository names
Approaches: 1) DFS bruteforce (TLE) - go through all combinations. Sort as you add. O( nsq log n) 2) DFS memoized (TLE) - approach 1) but keep tracked of last...
This is the result obtained after successful running of the program. 
A calculator with simple arithmetic operation with tkinter
Added rockPaperScissor game in c++.