├── Adhoc └── UVa 10954 - Add All.cpp ├── Bruteforce ├── 12325 - Zombies Treasure Chest.cpp └── UVa 725 - Division.cpp ├── CONTRIBUTING.md ├── Data Structure ├── UVa 11988 - Broken Keyboard v2.cpp ├── UVa 11988 - Broken Keyboard.cpp └── UVa 673 Parantheses Balance.cpp ├── Dynamic Programming ├── UVa 1347 - Tour.cpp └── UVa 437 - The Tower of Babylon.cpp ├── Easy Problems ├── Exercises │ ├── Timus 1025 - Democracy in Danger.py │ ├── Timus 1079 - Maximum.cpp │ ├── Timus 1149 - Sinus Dances.cpp │ ├── Timus 1313 - Some Words about Sports.py │ ├── Timus 1319 - Hotel.py │ ├── UVa 10340 - All in All.cpp │ ├── UVa 12412 - A Typical Homework.py │ ├── UVa 1583 - Digit Generator.py │ ├── UVa 1584 - Circular Sequence.cpp │ ├── UVa 1589 - Xiangqi.py │ ├── UVa 1590 - IP Networks.py │ ├── UVa 1591 - Data Mining.py │ ├── UVa 201 - Squares.py │ ├── UVa 213 - Message Decoding.py │ ├── UVa 220 - Othello.cpp │ ├── UVa 232 - Corssword Answers.py │ ├── UVa 272 - TEX Quotes.py │ ├── UVa 340 - Master-Mind Hints.cpp │ ├── UVa 508 - Morese Mismatches.cpp │ ├── UVa 509 - RAID.cpp │ ├── UVa 512 - Spreadsheet Tracking.py │ └── UVa 815 - Flooded.py ├── Timus 1000 - A+B Problem.cpp ├── Timus 1005 - Stone Pile v1.cpp ├── Timus 1005 - Stone Pile v2.cpp ├── Timus 1005 - Stone Pile v3.cpp ├── Timus 1005 - Stone Pile v4.cpp ├── Timus 1014 - Product of Digits.cpp ├── Timus 1020 - Rope.cpp ├── Timus 1044 - Lucky Tickets (Easy).cpp ├── Timus 1197 - Lonesome Knight.cpp ├── UVa 12108 - Extraordinarily Tired Students.cpp ├── UVa 202 - Repeating Decimals.cpp └── UVa 253 - Cube Painting.cpp ├── Geometry └── UVa 10283 - The Kissing Circles.cpp ├── Graph Theory └── UVa 10048 - Audiophobia.cpp ├── Greedy └── CF 26B - Regular Bracket Sequence.cpp ├── Mathematics ├── UVA 12169 - Disgruntled Judge.cpp ├── UVa 10375 - Choose and divide.cpp └── UVa 11582 - Colossal Fibonacci Numbers!.cpp ├── STL ├── Exercises │ ├── UVa 10763 - Foreign Exchange v2.cpp │ ├── UVa 10763 - Foreign Exchange.cpp │ ├── UVa 10935 - Throwing Cards Away I.cpp │ ├── UVa 12333 - Revenge of Fibonacci.cpp │ ├── UVa 12504 - Updating a Dictionary.cpp │ ├── UVa 1593 - Alignment of Code.cpp │ ├── UVa 1594 - Ducci Sequence.cpp │ ├── UVa 1595 - Symmetry.cpp │ ├── UVa 1596 - Bug Hunt.cpp │ ├── UVa 212 - Use of Hospital Facilities.cpp │ ├── UVa 230 - Borrowers.cpp │ ├── UVa 400 - Unix ls.cpp │ ├── UVa 511 - Do You Know the Way to San Jose?.cpp │ └── UVa 822 - Queue and A.cpp ├── Timus 1209 - 1, 10, 100, 1000....py ├── UVA 136 - Ugly Numbers.cpp ├── UVa 101 - The Blocks Problem.cpp ├── UVa 10815 - Andy's First Dictionary.cpp ├── UVa 10815 - Andy's First Dictionary.py ├── UVa 12096 - The SetStack Computer.cpp ├── UVa 12100 - Printer Queue.cpp ├── UVa 156 - Anagrams.cpp ├── UVa 1592 - Database.py └── UVa 540 - Team Queue.cpp ├── UVa 10474 Where is the Marble?.cpp └── readme.md /Adhoc/UVa 10954 - Add All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Adhoc/UVa 10954 - Add All.cpp -------------------------------------------------------------------------------- /Bruteforce/12325 - Zombies Treasure Chest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Bruteforce/12325 - Zombies Treasure Chest.cpp -------------------------------------------------------------------------------- /Bruteforce/UVa 725 - Division.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Bruteforce/UVa 725 - Division.cpp -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Data Structure/UVa 11988 - Broken Keyboard v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Data Structure/UVa 11988 - Broken Keyboard v2.cpp -------------------------------------------------------------------------------- /Data Structure/UVa 11988 - Broken Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Data Structure/UVa 11988 - Broken Keyboard.cpp -------------------------------------------------------------------------------- /Data Structure/UVa 673 Parantheses Balance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Data Structure/UVa 673 Parantheses Balance.cpp -------------------------------------------------------------------------------- /Dynamic Programming/UVa 1347 - Tour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Dynamic Programming/UVa 1347 - Tour.cpp -------------------------------------------------------------------------------- /Dynamic Programming/UVa 437 - The Tower of Babylon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Dynamic Programming/UVa 437 - The Tower of Babylon.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/Timus 1025 - Democracy in Danger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/Timus 1025 - Democracy in Danger.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/Timus 1079 - Maximum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/Timus 1079 - Maximum.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/Timus 1149 - Sinus Dances.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/Timus 1149 - Sinus Dances.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/Timus 1313 - Some Words about Sports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/Timus 1313 - Some Words about Sports.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/Timus 1319 - Hotel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/Timus 1319 - Hotel.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 10340 - All in All.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 10340 - All in All.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 12412 - A Typical Homework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 12412 - A Typical Homework.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 1583 - Digit Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 1583 - Digit Generator.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 1584 - Circular Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 1584 - Circular Sequence.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 1589 - Xiangqi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 1589 - Xiangqi.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 1590 - IP Networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 1590 - IP Networks.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 1591 - Data Mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 1591 - Data Mining.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 201 - Squares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 201 - Squares.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 213 - Message Decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 213 - Message Decoding.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 220 - Othello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 220 - Othello.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 232 - Corssword Answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 232 - Corssword Answers.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 272 - TEX Quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 272 - TEX Quotes.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 340 - Master-Mind Hints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 340 - Master-Mind Hints.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 508 - Morese Mismatches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 508 - Morese Mismatches.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 509 - RAID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 509 - RAID.cpp -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 512 - Spreadsheet Tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 512 - Spreadsheet Tracking.py -------------------------------------------------------------------------------- /Easy Problems/Exercises/UVa 815 - Flooded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Exercises/UVa 815 - Flooded.py -------------------------------------------------------------------------------- /Easy Problems/Timus 1000 - A+B Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1000 - A+B Problem.cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1005 - Stone Pile v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1005 - Stone Pile v1.cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1005 - Stone Pile v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1005 - Stone Pile v2.cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1005 - Stone Pile v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1005 - Stone Pile v3.cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1005 - Stone Pile v4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1005 - Stone Pile v4.cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1014 - Product of Digits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1014 - Product of Digits.cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1020 - Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1020 - Rope.cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1044 - Lucky Tickets (Easy).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1044 - Lucky Tickets (Easy).cpp -------------------------------------------------------------------------------- /Easy Problems/Timus 1197 - Lonesome Knight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/Timus 1197 - Lonesome Knight.cpp -------------------------------------------------------------------------------- /Easy Problems/UVa 12108 - Extraordinarily Tired Students.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/UVa 12108 - Extraordinarily Tired Students.cpp -------------------------------------------------------------------------------- /Easy Problems/UVa 202 - Repeating Decimals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/UVa 202 - Repeating Decimals.cpp -------------------------------------------------------------------------------- /Easy Problems/UVa 253 - Cube Painting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Easy Problems/UVa 253 - Cube Painting.cpp -------------------------------------------------------------------------------- /Geometry/UVa 10283 - The Kissing Circles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Geometry/UVa 10283 - The Kissing Circles.cpp -------------------------------------------------------------------------------- /Graph Theory/UVa 10048 - Audiophobia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Graph Theory/UVa 10048 - Audiophobia.cpp -------------------------------------------------------------------------------- /Greedy/CF 26B - Regular Bracket Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Greedy/CF 26B - Regular Bracket Sequence.cpp -------------------------------------------------------------------------------- /Mathematics/UVA 12169 - Disgruntled Judge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Mathematics/UVA 12169 - Disgruntled Judge.cpp -------------------------------------------------------------------------------- /Mathematics/UVa 10375 - Choose and divide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Mathematics/UVa 10375 - Choose and divide.cpp -------------------------------------------------------------------------------- /Mathematics/UVa 11582 - Colossal Fibonacci Numbers!.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/Mathematics/UVa 11582 - Colossal Fibonacci Numbers!.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 10763 - Foreign Exchange v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 10763 - Foreign Exchange v2.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 10763 - Foreign Exchange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 10763 - Foreign Exchange.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 10935 - Throwing Cards Away I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 10935 - Throwing Cards Away I.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 12333 - Revenge of Fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 12333 - Revenge of Fibonacci.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 12504 - Updating a Dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 12504 - Updating a Dictionary.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 1593 - Alignment of Code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 1593 - Alignment of Code.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 1594 - Ducci Sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 1594 - Ducci Sequence.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 1595 - Symmetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 1595 - Symmetry.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 1596 - Bug Hunt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 1596 - Bug Hunt.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 212 - Use of Hospital Facilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 212 - Use of Hospital Facilities.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 230 - Borrowers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 230 - Borrowers.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 400 - Unix ls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 400 - Unix ls.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 511 - Do You Know the Way to San Jose?.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 511 - Do You Know the Way to San Jose?.cpp -------------------------------------------------------------------------------- /STL/Exercises/UVa 822 - Queue and A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Exercises/UVa 822 - Queue and A.cpp -------------------------------------------------------------------------------- /STL/Timus 1209 - 1, 10, 100, 1000....py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/Timus 1209 - 1, 10, 100, 1000....py -------------------------------------------------------------------------------- /STL/UVA 136 - Ugly Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVA 136 - Ugly Numbers.cpp -------------------------------------------------------------------------------- /STL/UVa 101 - The Blocks Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 101 - The Blocks Problem.cpp -------------------------------------------------------------------------------- /STL/UVa 10815 - Andy's First Dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 10815 - Andy's First Dictionary.cpp -------------------------------------------------------------------------------- /STL/UVa 10815 - Andy's First Dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 10815 - Andy's First Dictionary.py -------------------------------------------------------------------------------- /STL/UVa 12096 - The SetStack Computer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 12096 - The SetStack Computer.cpp -------------------------------------------------------------------------------- /STL/UVa 12100 - Printer Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 12100 - Printer Queue.cpp -------------------------------------------------------------------------------- /STL/UVa 156 - Anagrams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 156 - Anagrams.cpp -------------------------------------------------------------------------------- /STL/UVa 1592 - Database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 1592 - Database.py -------------------------------------------------------------------------------- /STL/UVa 540 - Team Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/STL/UVa 540 - Team Queue.cpp -------------------------------------------------------------------------------- /UVa 10474 Where is the Marble?.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/UVa 10474 Where is the Marble?.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanto86/problem-book-1-solutions/HEAD/readme.md --------------------------------------------------------------------------------