├── .DS_Store ├── JAVA ├── Collections │ ├── binarySearch.md │ ├── max.md │ ├── min.md │ ├── reverse.md │ ├── reverseOrder.md │ ├── rotate.md │ ├── shuffle.md │ ├── sort.md │ └── swap.md ├── Iterators.md ├── Pair │ ├── hashing.md │ ├── pair.md │ ├── sorting.md │ └── utilities.md ├── README.md ├── Strings.md ├── containers │ ├── lists.md │ ├── maps.md │ ├── queues.md │ ├── sets.md │ └── stack.md ├── p1.JPG ├── p2.JPG ├── p3.JPG └── p4.JPG ├── LICENSE ├── README.md ├── _config.yml ├── cpp ├── .DS_Store ├── Iterators.md ├── README.md ├── containers │ ├── Pairs&Tuples.markdown │ ├── Vectors.markdown │ ├── bitsets.md │ ├── maps.md │ ├── queue.md │ ├── sets.md │ └── stacks.md ├── functions │ ├── MaxMin.md │ ├── binary_search.md │ ├── is_sorted.md │ ├── lower_bound.md │ ├── max_element.md │ ├── min_element.md │ ├── next_permutation.md │ ├── reverse.md │ ├── set_difference.md │ ├── set_intersection.md │ ├── set_union.md │ ├── sort.md │ └── upper_bound.md ├── introduction.md ├── problems │ ├── chefcode.cpp │ ├── ipctrain.cpp │ ├── kjcp01.cpp │ ├── kjcp02.cpp │ └── snakeeat.cpp └── templates.md ├── problems.md ├── python ├── Readme.md ├── containers │ ├── dictionary.md │ ├── heapq.md │ ├── lists.md │ └── sets.md └── methods │ ├── Counters.md │ ├── bisect.md │ ├── itertools.md │ └── miscellaneous.md ├── reference.md └── template.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/.DS_Store -------------------------------------------------------------------------------- /JAVA/Collections/binarySearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/binarySearch.md -------------------------------------------------------------------------------- /JAVA/Collections/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/max.md -------------------------------------------------------------------------------- /JAVA/Collections/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/min.md -------------------------------------------------------------------------------- /JAVA/Collections/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/reverse.md -------------------------------------------------------------------------------- /JAVA/Collections/reverseOrder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/reverseOrder.md -------------------------------------------------------------------------------- /JAVA/Collections/rotate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/rotate.md -------------------------------------------------------------------------------- /JAVA/Collections/shuffle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/shuffle.md -------------------------------------------------------------------------------- /JAVA/Collections/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/sort.md -------------------------------------------------------------------------------- /JAVA/Collections/swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Collections/swap.md -------------------------------------------------------------------------------- /JAVA/Iterators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Iterators.md -------------------------------------------------------------------------------- /JAVA/Pair/hashing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Pair/hashing.md -------------------------------------------------------------------------------- /JAVA/Pair/pair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Pair/pair.md -------------------------------------------------------------------------------- /JAVA/Pair/sorting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Pair/sorting.md -------------------------------------------------------------------------------- /JAVA/Pair/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Pair/utilities.md -------------------------------------------------------------------------------- /JAVA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/README.md -------------------------------------------------------------------------------- /JAVA/Strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/Strings.md -------------------------------------------------------------------------------- /JAVA/containers/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/containers/lists.md -------------------------------------------------------------------------------- /JAVA/containers/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/containers/maps.md -------------------------------------------------------------------------------- /JAVA/containers/queues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/containers/queues.md -------------------------------------------------------------------------------- /JAVA/containers/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/containers/sets.md -------------------------------------------------------------------------------- /JAVA/containers/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/containers/stack.md -------------------------------------------------------------------------------- /JAVA/p1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/p1.JPG -------------------------------------------------------------------------------- /JAVA/p2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/p2.JPG -------------------------------------------------------------------------------- /JAVA/p3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/p3.JPG -------------------------------------------------------------------------------- /JAVA/p4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/JAVA/p4.JPG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/_config.yml -------------------------------------------------------------------------------- /cpp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/.DS_Store -------------------------------------------------------------------------------- /cpp/Iterators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/Iterators.md -------------------------------------------------------------------------------- /cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/README.md -------------------------------------------------------------------------------- /cpp/containers/Pairs&Tuples.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/containers/Pairs&Tuples.markdown -------------------------------------------------------------------------------- /cpp/containers/Vectors.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/containers/Vectors.markdown -------------------------------------------------------------------------------- /cpp/containers/bitsets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/containers/bitsets.md -------------------------------------------------------------------------------- /cpp/containers/maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/containers/maps.md -------------------------------------------------------------------------------- /cpp/containers/queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/containers/queue.md -------------------------------------------------------------------------------- /cpp/containers/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/containers/sets.md -------------------------------------------------------------------------------- /cpp/containers/stacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/containers/stacks.md -------------------------------------------------------------------------------- /cpp/functions/MaxMin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/MaxMin.md -------------------------------------------------------------------------------- /cpp/functions/binary_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/binary_search.md -------------------------------------------------------------------------------- /cpp/functions/is_sorted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/is_sorted.md -------------------------------------------------------------------------------- /cpp/functions/lower_bound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/lower_bound.md -------------------------------------------------------------------------------- /cpp/functions/max_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/max_element.md -------------------------------------------------------------------------------- /cpp/functions/min_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/min_element.md -------------------------------------------------------------------------------- /cpp/functions/next_permutation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/next_permutation.md -------------------------------------------------------------------------------- /cpp/functions/reverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/reverse.md -------------------------------------------------------------------------------- /cpp/functions/set_difference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/set_difference.md -------------------------------------------------------------------------------- /cpp/functions/set_intersection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/set_intersection.md -------------------------------------------------------------------------------- /cpp/functions/set_union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/set_union.md -------------------------------------------------------------------------------- /cpp/functions/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/sort.md -------------------------------------------------------------------------------- /cpp/functions/upper_bound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/functions/upper_bound.md -------------------------------------------------------------------------------- /cpp/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/introduction.md -------------------------------------------------------------------------------- /cpp/problems/chefcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/problems/chefcode.cpp -------------------------------------------------------------------------------- /cpp/problems/ipctrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/problems/ipctrain.cpp -------------------------------------------------------------------------------- /cpp/problems/kjcp01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/problems/kjcp01.cpp -------------------------------------------------------------------------------- /cpp/problems/kjcp02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/problems/kjcp02.cpp -------------------------------------------------------------------------------- /cpp/problems/snakeeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/problems/snakeeat.cpp -------------------------------------------------------------------------------- /cpp/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/cpp/templates.md -------------------------------------------------------------------------------- /problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/problems.md -------------------------------------------------------------------------------- /python/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/Readme.md -------------------------------------------------------------------------------- /python/containers/dictionary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/containers/dictionary.md -------------------------------------------------------------------------------- /python/containers/heapq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/containers/heapq.md -------------------------------------------------------------------------------- /python/containers/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/containers/lists.md -------------------------------------------------------------------------------- /python/containers/sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/containers/sets.md -------------------------------------------------------------------------------- /python/methods/Counters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/methods/Counters.md -------------------------------------------------------------------------------- /python/methods/bisect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/methods/bisect.md -------------------------------------------------------------------------------- /python/methods/itertools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/methods/itertools.md -------------------------------------------------------------------------------- /python/methods/miscellaneous.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/python/methods/miscellaneous.md -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | -------------------------------------------------------------------------------- /template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kjsce-codecell/standard-library-in-x/HEAD/template.md --------------------------------------------------------------------------------