hacktoberfest_2022 icon indicating copy to clipboard operation
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

Results 101 hacktoberfest_2022 issues
Sort by recently updated
recently updated
newest added

/** * 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. ![output circularll](https://user-images.githubusercontent.com/99266959/193386565-9acd093d-60b3-4823-abcd-43175e26b1bf.png)

A calculator with simple arithmetic operation with tkinter

Added rockPaperScissor game in c++.