├── BubbleSort.java ├── C++ ├── 132Pattern.cpp ├── Interesting_Pattern.cpp ├── Two sum.cpp ├── Unique Paths II.cpp ├── Valid Anagram.cpp ├── Valid Palindrome.cpp ├── Valid Parentheses.cpp ├── Valid Sudoku.cpp ├── Validate Binary Search Tree.cpp ├── Word Break.cpp ├── Word Ladder.cpp ├── Word Search.cpp ├── Word pattern.cpp ├── Zigzag conversion.cpp ├── binary-search.cpp ├── binaryTreeToBST.cpp ├── kadane algo │ ├── Kadane's Algorithm.cpp │ └── kadaneAlgo.md └── middleelementlinkedlist.cpp ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Finding the Missing Number ├── Java ├── ArrayPythagorasTriplet.java ├── HeapSort.java ├── Print Maze Paths.java └── quickSort.java ├── LICENSE ├── Longest Consecutive Subsequence.cpp ├── Python ├── Email_Slicer.py ├── Hangman.py ├── binarySearch.py └── pattern.py ├── README.md ├── SearchElementInRotatedSortedArray ├── TicTacToeGame ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── Component │ ├── Cards │ │ ├── Card.css │ │ └── Card.js │ ├── Grids │ │ ├── Grid.css │ │ └── Grid.js │ ├── Helpers │ │ └── Winner.js │ └── Icons │ │ └── Icon.js │ └── index.js ├── figma ├── abc.css ├── abc.css.map ├── abc.html ├── abc.js ├── abc.scss ├── figma.html ├── image.png ├── style copy.css └── style.css ├── kadanesAlgo.exe └── reverseLinkedList.js /BubbleSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/BubbleSort.java -------------------------------------------------------------------------------- /C++/132Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/132Pattern.cpp -------------------------------------------------------------------------------- /C++/Interesting_Pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Interesting_Pattern.cpp -------------------------------------------------------------------------------- /C++/Two sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Two sum.cpp -------------------------------------------------------------------------------- /C++/Unique Paths II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Unique Paths II.cpp -------------------------------------------------------------------------------- /C++/Valid Anagram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Valid Anagram.cpp -------------------------------------------------------------------------------- /C++/Valid Palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Valid Palindrome.cpp -------------------------------------------------------------------------------- /C++/Valid Parentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Valid Parentheses.cpp -------------------------------------------------------------------------------- /C++/Valid Sudoku.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Valid Sudoku.cpp -------------------------------------------------------------------------------- /C++/Validate Binary Search Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Validate Binary Search Tree.cpp -------------------------------------------------------------------------------- /C++/Word Break.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Word Break.cpp -------------------------------------------------------------------------------- /C++/Word Ladder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Word Ladder.cpp -------------------------------------------------------------------------------- /C++/Word Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Word Search.cpp -------------------------------------------------------------------------------- /C++/Word pattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Word pattern.cpp -------------------------------------------------------------------------------- /C++/Zigzag conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/Zigzag conversion.cpp -------------------------------------------------------------------------------- /C++/binary-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/binary-search.cpp -------------------------------------------------------------------------------- /C++/binaryTreeToBST.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/binaryTreeToBST.cpp -------------------------------------------------------------------------------- /C++/kadane algo/Kadane's Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/kadane algo/Kadane's Algorithm.cpp -------------------------------------------------------------------------------- /C++/kadane algo/kadaneAlgo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/kadane algo/kadaneAlgo.md -------------------------------------------------------------------------------- /C++/middleelementlinkedlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/C++/middleelementlinkedlist.cpp -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Finding the Missing Number: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Finding the Missing Number -------------------------------------------------------------------------------- /Java/ArrayPythagorasTriplet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Java/ArrayPythagorasTriplet.java -------------------------------------------------------------------------------- /Java/HeapSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Java/HeapSort.java -------------------------------------------------------------------------------- /Java/Print Maze Paths.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Java/Print Maze Paths.java -------------------------------------------------------------------------------- /Java/quickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Java/quickSort.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/LICENSE -------------------------------------------------------------------------------- /Longest Consecutive Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Longest Consecutive Subsequence.cpp -------------------------------------------------------------------------------- /Python/Email_Slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Python/Email_Slicer.py -------------------------------------------------------------------------------- /Python/Hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Python/Hangman.py -------------------------------------------------------------------------------- /Python/binarySearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Python/binarySearch.py -------------------------------------------------------------------------------- /Python/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/Python/pattern.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/README.md -------------------------------------------------------------------------------- /SearchElementInRotatedSortedArray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/SearchElementInRotatedSortedArray -------------------------------------------------------------------------------- /TicTacToeGame/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/.gitignore -------------------------------------------------------------------------------- /TicTacToeGame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/README.md -------------------------------------------------------------------------------- /TicTacToeGame/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/package-lock.json -------------------------------------------------------------------------------- /TicTacToeGame/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/package.json -------------------------------------------------------------------------------- /TicTacToeGame/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/public/favicon.ico -------------------------------------------------------------------------------- /TicTacToeGame/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/public/index.html -------------------------------------------------------------------------------- /TicTacToeGame/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/public/manifest.json -------------------------------------------------------------------------------- /TicTacToeGame/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/public/robots.txt -------------------------------------------------------------------------------- /TicTacToeGame/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/App.css -------------------------------------------------------------------------------- /TicTacToeGame/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/App.js -------------------------------------------------------------------------------- /TicTacToeGame/src/Component/Cards/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/Component/Cards/Card.css -------------------------------------------------------------------------------- /TicTacToeGame/src/Component/Cards/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/Component/Cards/Card.js -------------------------------------------------------------------------------- /TicTacToeGame/src/Component/Grids/Grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/Component/Grids/Grid.css -------------------------------------------------------------------------------- /TicTacToeGame/src/Component/Grids/Grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/Component/Grids/Grid.js -------------------------------------------------------------------------------- /TicTacToeGame/src/Component/Helpers/Winner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/Component/Helpers/Winner.js -------------------------------------------------------------------------------- /TicTacToeGame/src/Component/Icons/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/Component/Icons/Icon.js -------------------------------------------------------------------------------- /TicTacToeGame/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/TicTacToeGame/src/index.js -------------------------------------------------------------------------------- /figma/abc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/abc.css -------------------------------------------------------------------------------- /figma/abc.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/abc.css.map -------------------------------------------------------------------------------- /figma/abc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/abc.html -------------------------------------------------------------------------------- /figma/abc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/abc.js -------------------------------------------------------------------------------- /figma/abc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/abc.scss -------------------------------------------------------------------------------- /figma/figma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/figma.html -------------------------------------------------------------------------------- /figma/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/image.png -------------------------------------------------------------------------------- /figma/style copy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/style copy.css -------------------------------------------------------------------------------- /figma/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/figma/style.css -------------------------------------------------------------------------------- /kadanesAlgo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/kadanesAlgo.exe -------------------------------------------------------------------------------- /reverseLinkedList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushi-ras/beginner-contribution-/HEAD/reverseLinkedList.js --------------------------------------------------------------------------------