├── .github └── workflows │ └── python-publish.yml ├── Balanced Parenthesis.c ├── Binarysearch.cpp ├── Blockchain └── readme.text ├── Bruhtask-app ├── Assets │ ├── Svg │ │ ├── Hero.svg │ │ ├── todo.svg │ │ └── waves.svg │ ├── images │ │ └── logo.png │ └── styles │ │ ├── about.css │ │ └── style.css ├── README.md ├── about.html ├── app.js └── index.html ├── BubbleSort.cpp ├── C++ ├── 1D prefix sum .cpp ├── 2D prefix sum.cpp ├── 3Sum.cpp ├── AdvancedPattern.cpp ├── Armstrong_no.cpp ├── Arrays │ ├── Game with Nos │ ├── Merge_Two_Sorted_Arrays.cpp │ ├── Monotoni_Array.cpp │ ├── Rotate Array │ ├── Running Sum │ ├── Sum of an array │ ├── Wave Array │ ├── count 0's │ ├── largest value │ ├── play with Or │ ├── sort array 0s , 1s and 2s │ ├── sort array 0s and 1s │ └── swap values ├── BFS.cpp ├── BInaryTreeMaximumPathSum.cpp ├── Basic │ ├── Diamond_pattern.cpp │ ├── Find_sum_of_given_series.cpp │ ├── Root_of_number.cpp │ ├── floydstriangle.cpp │ ├── hollowdiamond.cpp │ ├── ifelse.cpp │ ├── inverted.cpp │ ├── numberpyramid.cpp │ ├── pascalstriangle.cpp │ ├── pattern1.cpp │ ├── pattern2.cpp │ ├── pow_of_no.cpp │ ├── rhombus.cpp │ ├── sum_of_odd_and_even.cpp │ └── zigzag.cpp ├── Billing systems ├── Bubble sort ques │ ├── Bubble sort ques.cbp │ ├── Bubble sort ques.depend │ ├── Bubble sort ques.layout │ ├── bin │ │ └── Debug │ │ │ └── Bubble sort ques │ ├── main.cpp │ └── obj │ │ └── Debug │ │ └── main.o ├── BubbleSort.cpp ├── Bucket sort ├── C++.txt ├── ComputeLCMof2Numbers ├── Count_inversion.cpp ├── DFS.cpp ├── Delete_Tree.cpp ├── ExponentialSearch.cpp ├── Find Missing Element.cpp ├── Find_k-th_smallest_element_in_BST.cpp ├── Flattering_of_Linked_List ├── Function_Using_LinkedList.cpp ├── HeapSort.cpp ├── Height _of_tree.cpp ├── Jump_game.cpp ├── Pascals triangle using c++ ├── PowerSet.cpp ├── QuickSort.cpp ├── README.md ├── RatInMaze.cpp ├── Search_2D_Matrix.cpp ├── Sorting │ ├── Bubble_sort.cpp │ ├── Insertion_sort.cpp │ ├── WaveSort.cpp │ ├── bubble_sort.cpp │ ├── insertion_sort.cpp │ └── selectionsort.cpp ├── SpiralMatrix.cpp ├── Stack_using_LinkedList.cpp ├── Stickler_theif.cpp ├── StringPalindrome ├── TernarySearch.cpp ├── Unit_conversion.cpp ├── ValidParenthesis.cpp ├── Valid_Parenthesis.cpp ├── ascending array.cpp ├── atmmachineprogram.cpp ├── balanced_binary_tree.cpp ├── binary search tree searching.cpp ├── binary search │ ├── bin │ │ └── Debug │ │ │ └── binary search │ ├── binary search.cbp │ ├── binary search.layout │ ├── main.cpp │ └── obj │ │ └── Debug │ │ └── main.o ├── binarySearch.cpp ├── binarytodecimal.cpp ├── bubblesort.cpp ├── bucketsort.cpp ├── code1.txt ├── codesforces1009B.cpp ├── combsort.cpp ├── count_inversions.cpp ├── cyclicsort.cpp ├── decimaltobinary.cpp ├── dijsktra's algorithm ├── duplicate.cpp ├── even odd.cpp ├── factorial.cpp ├── find_circuilar_tour.cpp ├── floyds triangle.cpp ├── gfg.cpp ├── halfpyramid.cpp ├── insert in linkedlist.layout ├── insertion_sort_linked_list.cpp ├── kruskal.cpp ├── lonestValidParanthesis.cpp ├── main.c ├── main.cpp ├── max number.cpp ├── maximum subarray sum of size k.cpp ├── n_queen_problem.cpp ├── postive-negative.cpp ├── quick sort cpp ├── quickSort.cpp ├── readme.txt ├── scss.layout ├── shell-sort.cpp ├── solvingthesudoku.cpp ├── sorting.cpp ├── stack_array_implementation.cpp ├── stack_using_vector.cpp ├── sum_of_digits_of_a_num.cpp ├── towerofhanoi.cpp ├── transposegraph.cpp └── two_sum.cpp ├── Competitive Coding ├── 1063-No. of valid Subarrays.java ├── 15-three sum.java ├── 224-basic calculator.java ├── 66. Plus One.CPP ├── Check_whether_String_is_Palindrome_or_not.cpp ├── Converting_Roman_Numerals_to_Decimal.cpp ├── Copy set bits in a range.cpp ├── Count number of bits to be flipped to convert A to B.cpp ├── Count set bits in an integer.cpp ├── Count total set bits in all numbers from 1 to n.cpp ├── Create a square with diamond carved in it ├── Equilbrium_Element.java ├── Find the two non-repeating elements.cpp ├── LongestCommonSubsequence.cpp ├── MCM.java ├── OptimalBST.java ├── Program to find whether a no is power of two.cpp ├── QuadraticEquation.java ├── Reverse a String.cpp ├── Spiral Traversal on a matrix ├── coinChange.cpp ├── quick_sort.java ├── readme.md ├── stringtask.cpp └── theatresquares.cpp ├── Convert to binary code.java ├── Cyber Security ├── Cybersecurity Careers └── readme.text ├── Data Structures and Algorithms ├── Binary Tree │ ├── BinarySearchTree.h │ ├── BinaryTreeNode.h │ ├── BinaryTreeSearchUse.cpp │ ├── BinaryTreeUse.cpp │ └── LCAofBST.cpp ├── BinarySearchJava.java ├── Doubly_LL │ ├── palindrome │ └── palindrome.cpp ├── Linked List │ ├── Merge_2_sorted_LL.py │ └── insertLL.cpp ├── LinkedList.java ├── PlusOne.java ├── ProgramToImplementBinarySearch.cpp ├── Queue │ ├── NodeClass.h │ ├── queueUse.cpp │ ├── queueUse.exe │ ├── queueUsingArray.h │ ├── queueUsingDynamically.h │ └── queueUsingLL.h ├── Rearrange_Array_Alternately.java ├── Searching_in_an_array_where_adjacent_differ_byatmostk.java ├── SelectionSorting.java ├── Stack │ ├── StackUse.cpp │ ├── StackUsingArray.cpp │ ├── StackUsingLL.cpp │ └── StackUsingTemplate.cpp ├── Tree │ ├── Tree.cpp │ ├── Tree.exe │ └── TreeNode.h ├── arrayrotation.cpp ├── average.c ├── fibonacci.c ├── funccall.c ├── heapSort.java ├── linear_search.cpp ├── pairofsum.cpp ├── readme.text ├── selection sort in arrays.c ├── string.c ├── sumofdigits.c ├── switchcasecalc.c ├── towerofhanoi.c └── year.c ├── Dijkstra.cpp ├── Doubly_Linked_List.c ├── ElectricityBillCalc.py ├── FarenheitToCelcius.py ├── Full Stack App Development ├── Book App │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── recyclerview │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── recyclerview │ │ │ │ │ ├── Book.kt │ │ │ │ │ ├── BookAdapter.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── item_view.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── recyclerview │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CounterApp │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── helloworld │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── helloworld │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── helloworld │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── GreetingApp │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── greetingapp │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── greetingapp │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── greetingapp │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Intent │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── intent │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── intent │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── SecondActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_second.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── intent │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── readme.text ├── Full Stack Web Development ├── drum kit │ ├── Sound │ │ ├── crash.mp3 │ │ ├── kick-bass.mp3 │ │ ├── snare.mp3 │ │ ├── tom-1.mp3 │ │ ├── tom-2.mp3 │ │ ├── tom-3.mp3 │ │ └── tom-4.mp3 │ ├── image │ │ ├── crash.png │ │ ├── kick.png │ │ ├── snare.png │ │ ├── tom1.png │ │ ├── tom2.png │ │ ├── tom3.png │ │ └── tom4.png │ ├── index.html │ ├── script.js │ └── style.css ├── movie seat booking │ ├── index.html │ ├── main.js │ └── style.css ├── readme.text └── youtube-clone │ ├── Resources │ ├── download.gif │ ├── favicon_32x32.png │ ├── hamburger.png │ ├── youtube_logo.png │ └── youtube_logo.webp │ ├── css │ └── styles.css │ ├── index.html │ └── script.js ├── Graphic Designing ├── App Development.png ├── BreadBoard Coding Society (1).png ├── Copy of BreadBOard COding Society.png ├── bread12.png ├── breadboard10001-0150.mp4 ├── breadboard23.png ├── cofefee.png └── readme.text ├── Iterative Merge sort.c ├── JS_Accordin ├── index.html ├── main.js └── style.css ├── LICENSE ├── Longest Palindrome in a String.py ├── Machine Learning...Artificial Intelligence...Data Sciences ├── KMeans Clustering.ipynb ├── Model Creation.ipynb ├── Model Validating.ipynb ├── Overfitting and Underfitting.ipynb ├── melb_data.csv ├── random_forest.ipynb └── readme.text ├── Max_circular_subarray_sum.cpp ├── Merge Two Sorted Array.c ├── MergeSort.cpp ├── Merge_k_Sorted_Arrays.CPP ├── Prims.cpp ├── Prims.exe ├── Prims_py.ipynb ├── Python ├── Alphabet_half_pyramid.py ├── BMI.py ├── BinarySearch.py ├── Calculator.py ├── CoinFlip.py ├── Colored Text with Python.py ├── DiamondOfStars.py ├── Dice.py ├── DiceSim.py ├── DigitalClock.py ├── EmailSlicer.py ├── Factorial.py ├── FibonacciSeries.py ├── Floyd_triangle.py ├── FractalTreePattern.py ├── GoogleLogo.py ├── InfiniteHexagon.py ├── Morse_code_translator.py ├── MultiplicationTable.py ├── NumberOfDigits.py ├── Pair_Sum.py ├── Palindrome.py ├── Pascal_triangle.py ├── Pyramid_of_numbers.py ├── Pyramidpattern.py ├── QR Code Generation using Python.py ├── QRcodeToText.py ├── Quick sort.py ├── RootsOfQuadratic.py ├── SimpleInterest.py ├── Transpose and Flatten.py ├── TurtleGraphics.py ├── WeightConverter.py ├── bst_insert.py ├── calculatorGUI.py ├── date_validation.py ├── factorial.py ├── guess number game.py ├── heart.py ├── news teller.py ├── prime.py ├── pronouncer.py ├── readme.txt ├── roman to decimals.py ├── snakeGame.py └── swggame.py ├── Q1.java ├── README.md ├── Random_Color_Generator_Project ├── README.md ├── index.html ├── script.js └── style.css ├── Recursive merge sort.c ├── RemoveloopinLinkedList.cpp ├── SelectionSort.cpp ├── Smallest_Positive_Missing_Number.cpp ├── Some basic C programs ├── area_of_circle.c ├── area_of_square.c ├── avg_of_3_number.c ├── cube_of_number.c ├── digit.c ├── divisble_by_2.c ├── smallest.c └── sum.c ├── Sparse Mattrix addition.c ├── Stack.c ├── Technical Content Writing └── readme.text ├── UI-UX Development └── readme.text ├── Web development Projects ├── HolaCuians │ ├── WhatsApp_Image_2021-04-25_at_2.44.20_PM-removebg-preview.png │ ├── WhatsApp_Image_2021-04-25_at_2.46.17_PM-removebg-preview.png │ ├── WhatsApp_Image_2021-04-25_at_2.46.17_PM__1_-removebg-preview.png │ ├── WhatsApp_Image_2021-04-25_at_2.46.17_PM__2_-removebg-preview.png │ ├── index.html │ └── logo 33.png ├── Typing-Speed-Tester │ ├── README.md │ ├── composer.json │ ├── index.html │ ├── index.php │ ├── script.js │ └── style.css ├── readme ├── snakes&ladders │ ├── board.css │ ├── board.js │ └── index.html └── tictactoe │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ └── src │ ├── App.js │ ├── components │ ├── Board.js │ ├── History.js │ ├── Square.js │ └── StatusMessage.js │ ├── helpers.js │ ├── index.js │ └── styles │ └── root.scss ├── binary.cpp ├── calculator.cpp ├── calculator.py ├── clone_a_link_list_with_next_and_random_pointer.cpp ├── factorial.py ├── heapC++.cpp ├── java ├── Alarmclock.html ├── Alarmclock.js ├── ArraysWithLoops.java ├── BubbleSort.java ├── BucketSort.java ├── Calculating Factorial.java ├── ContactManager.java ├── CyclicSort.java ├── D extends C.java ├── Factorial.java ├── Fibonacci.java ├── FibonacciSeries.java ├── First Position of Target │ ├── Solution.class │ ├── Solution.java │ ├── helper.class │ ├── helper.java │ ├── readme.md │ └── solution.md ├── InvertedCommas.java ├── Lab4Q6.java ├── Longest Increasing Subsequnce.java ├── MainBank.java ├── Meeting Rooms.java ├── Merge Intervals.java ├── Merge Two Sorted List.java ├── MergeSort.java ├── Palindrome.java ├── PrimeNumber.java ├── PrimeNumbers2.java ├── QuickSort.java ├── Sets.java ├── StackMain.java ├── Threads3.java ├── TrappingRainWater.java ├── anybasetoanybase.java ├── insertionSort.java ├── jvm │ └── SimpleJVMDemo.java ├── merge_two_sorted_linkedlist.java ├── readme.txt └── style.css ├── merge_two_max_heaps.CPP ├── mergesortforlinkedlist.cpp ├── oops ├── 1.oop.cpp ├── 1.oop.exe ├── 2.1.cpp ├── 2.1.exe ├── 2.2.cpp ├── 2.2.exe ├── 2.3.cpp ├── 2.3.exe ├── 2.constructor and destructor.cpp ├── 2.constructor and destructor.exe ├── 3.1 copy constructor.cpp ├── 3.1 copy constructor.exe ├── 3.copy constructor.cpp ├── 3.copy constructor.exe ├── 4.destructor.cpp ├── 4.destructor.exe ├── 5.this_pointer.cpp ├── 5.this_pointer.exe ├── 6.Static members.cpp ├── 6.Static members.exe ├── 7.1.virtual functions.cpp ├── 7.1.virtual functions.exe ├── 7.2.virtual functions.cpp ├── 7.2.virtual functions.exe ├── 7.3.virtual functions.cpp ├── 7.3.virtual functions.exe ├── 7.inheritance and virtual functions.cpp ├── 8.1.cpp ├── 8.1.exe ├── 8.inheritance example.cpp ├── 8.inheritance example.exe ├── 9.multiple inheritance.cpp ├── 9.multiple inheritance.exe ├── oop sample 2.cpp ├── oop sample 2.exe ├── oop sample1.cpp └── oop sample1.exe ├── prime.py └── shopping-list.cpp /Blockchain/readme.text: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Bruhtask-app/Assets/Svg/waves.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bruhtask-app/Assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bread-board-coding/Hacktober_Fest_2021/460cf069bf9ee97cfe5962d79bbaaae40eb767d2/Bruhtask-app/Assets/images/logo.png -------------------------------------------------------------------------------- /Bruhtask-app/Assets/styles/about.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin: 0; 3 | padding: 0; 4 | box-sizing: border-box; 5 | } 6 | 7 | html { 8 | scroll-behavior: smooth; 9 | } 10 | 11 | body { 12 | background-color: #d9effd57; 13 | } 14 | 15 | .wave__container { 16 | position: absolute; 17 | top: 0; 18 | width: 100%; 19 | z-index: -2; 20 | } 21 | 22 | .heading { 23 | text-align: center; 24 | font-family: "Festive", cursive; 25 | font-size: 3rem; 26 | } 27 | 28 | .heading2 { 29 | font-family: "Festive", cursive; 30 | font-size: 3rem; 31 | } 32 | 33 | .container { 34 | margin-top: -6rem; 35 | } 36 | 37 | .prim a { 38 | text-decoration: none; 39 | } 40 | 41 | .prim:hover.prim a, 42 | .prim a:hover { 43 | color: #fff; 44 | } 45 | -------------------------------------------------------------------------------- /Bruhtask-app/README.md: -------------------------------------------------------------------------------- 1 |