diff --git a/__tests__/sort/InsertionSort.spec.ts b/__tests__/sort/InsertionSort.spec.ts index 5556f84..2d7d147 100644 --- a/__tests__/sort/InsertionSort.spec.ts +++ b/__tests__/sort/InsertionSort.spec.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/__tests__/sort/MergeSort.spec.ts b/__tests__/sort/MergeSort.spec.ts index 8a05c26..2721967 100644 --- a/__tests__/sort/MergeSort.spec.ts +++ b/__tests__/sort/MergeSort.spec.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/__tests__/sort/SelectionSort.spec.ts b/__tests__/sort/SelectionSort.spec.ts index b47c1bb..83abd12 100644 --- a/__tests__/sort/SelectionSort.spec.ts +++ b/__tests__/sort/SelectionSort.spec.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/__tests__/structures/Heap.spec.ts b/__tests__/structures/Heap.spec.ts index 20fd9fc..4e97367 100644 --- a/__tests__/structures/Heap.spec.ts +++ b/__tests__/structures/Heap.spec.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/__tests__/structures/List.spec.ts b/__tests__/structures/List.spec.ts index b4f17bf..bdbc310 100644 --- a/__tests__/structures/List.spec.ts +++ b/__tests__/structures/List.spec.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/__tests__/structures/Stack.spec.ts b/__tests__/structures/Stack.spec.ts index 2f8a209..d5308da 100644 --- a/__tests__/structures/Stack.spec.ts +++ b/__tests__/structures/Stack.spec.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/__tests__/structures/Tree.spec.ts b/__tests__/structures/Tree.spec.ts index 428bac9..5275b29 100644 --- a/__tests__/structures/Tree.spec.ts +++ b/__tests__/structures/Tree.spec.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/index.ts b/src/index.ts index 589a36c..b1b5826 100644 --- a/src/index.ts +++ b/src/index.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/search/BinarySearch.ts b/src/search/BinarySearch.ts index bcd48aa..b1e3c36 100644 --- a/src/search/BinarySearch.ts +++ b/src/search/BinarySearch.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/sort/InsertionSort.ts b/src/sort/InsertionSort.ts index 9efb848..94ce1e9 100644 --- a/src/sort/InsertionSort.ts +++ b/src/sort/InsertionSort.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/sort/MergeSort.ts b/src/sort/MergeSort.ts index a067f06..de9471c 100644 --- a/src/sort/MergeSort.ts +++ b/src/sort/MergeSort.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/sort/SelectionSort.ts b/src/sort/SelectionSort.ts index 2be087f..6164501 100644 --- a/src/sort/SelectionSort.ts +++ b/src/sort/SelectionSort.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/sort/index.ts b/src/sort/index.ts index 88bb04a..e2aec17 100644 --- a/src/sort/index.ts +++ b/src/sort/index.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/structures/Heap.ts b/src/structures/Heap.ts index 2bec8be..f84efd0 100644 --- a/src/structures/Heap.ts +++ b/src/structures/Heap.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/structures/List.ts b/src/structures/List.ts index 5796d1c..e785aa9 100644 --- a/src/structures/List.ts +++ b/src/structures/List.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/structures/Stack.ts b/src/structures/Stack.ts index 5c99ad1..f2ff055 100644 --- a/src/structures/Stack.ts +++ b/src/structures/Stack.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/structures/Tree.ts b/src/structures/Tree.ts index c7c52b9..aeca7b7 100644 --- a/src/structures/Tree.ts +++ b/src/structures/Tree.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/structures/index.ts b/src/structures/index.ts index d9b96a8..895b395 100644 --- a/src/structures/index.ts +++ b/src/structures/index.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/utils/compare.ts b/src/utils/compare.ts index e5d7f02..ece4022 100644 --- a/src/utils/compare.ts +++ b/src/utils/compare.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/utils/index.ts b/src/utils/index.ts index 7fcb30c..5ad434d 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/utils/sentinel.ts b/src/utils/sentinel.ts index 73c6f0d..6a68ed5 100644 --- a/src/utils/sentinel.ts +++ b/src/utils/sentinel.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation diff --git a/src/utils/sort.ts b/src/utils/sort.ts index f11eb8c..ef47d9b 100644 --- a/src/utils/sort.ts +++ b/src/utils/sort.ts @@ -7,8 +7,8 @@ * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * - * 1. Redistributions of source code must retain the above copyright notice, this - * list of conditions and the following disclaimer. + * 1. Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation