-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
add yt video association algorithm #1007
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/** | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove these changes from this pull request. |
||
* @function findMaxRecursion | ||
* @description This algorithm will find the maximum value of a array of numbers. | ||
* | ||
* @param {Integer[]} arr Array of numbers | ||
* @param {Integer} left Index of the first element | ||
* @param {Integer} right Index of the last element | ||
* | ||
* @return {Integer} Maximum value of the array | ||
* | ||
* @see [Maximum value](https://en.wikipedia.org/wiki/Maximum_value) | ||
* | ||
* @example findMaxRecursion([1, 2, 4, 5]) = 5 | ||
* @example findMaxRecursion([10, 40, 100, 20]) = 100 | ||
* @example findMaxRecursion([-1, -2, -4, -5]) = -1 | ||
*/ | ||
function findMaxRecursion(arr, left, right) { | ||
const len = arr.length | ||
|
||
if (len === 0 || !arr) return undefined | ||
|
||
if (left >= len || left < -len || right >= len || right < -len) | ||
throw new Error('Index out of range') | ||
|
||
if (left === right) return arr[left] | ||
|
||
// left + right shifted is the middle index | ||
const mid = (left + right) >> 1 | ||
|
||
// Find the maximum of left and right | ||
const leftMax = findMaxRecursion(arr, left, mid) | ||
const rightMax = findMaxRecursion(arr, mid + 1, right) | ||
|
||
// Return the maximum | ||
return Math.max(leftMax, rightMax) | ||
} | ||
|
||
export { findMaxRecursion } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import { findMaxRecursion } from '../FindMaxRecursion' | ||
|
||
describe('Test findMaxRecursion function', () => { | ||
const positiveAndNegativeArray = [1, 2, 4, 5, -1, -2, -4, -5] | ||
const positiveAndNegativeArray1 = [10, 40, 100, 20, -10, -40, -100, -20] | ||
|
||
const positiveArray = [1, 2, 4, 5] | ||
const positiveArray1 = [10, 40, 100, 20] | ||
|
||
const negativeArray = [-1, -2, -4, -5] | ||
const negativeArray1 = [-10, -40, -100, -20] | ||
|
||
const zeroArray = [0, 0, 0, 0] | ||
const emptyArray = [] | ||
|
||
it('Testing with positive arrays', () => { | ||
expect(findMaxRecursion(positiveArray, 0, positiveArray.length - 1)).toBe(5) | ||
expect(findMaxRecursion(positiveArray1, 0, positiveArray1.length - 1)).toBe( | ||
100 | ||
) | ||
}) | ||
|
||
it('Testing with negative arrays', () => { | ||
expect(findMaxRecursion(negativeArray, 0, negativeArray.length - 1)).toBe( | ||
-1 | ||
) | ||
expect(findMaxRecursion(negativeArray1, 0, negativeArray1.length - 1)).toBe( | ||
-10 | ||
) | ||
}) | ||
|
||
it('Testing with positive and negative arrays', () => { | ||
expect( | ||
findMaxRecursion( | ||
positiveAndNegativeArray, | ||
0, | ||
positiveAndNegativeArray.length - 1 | ||
) | ||
).toBe(5) | ||
expect( | ||
findMaxRecursion( | ||
positiveAndNegativeArray1, | ||
0, | ||
positiveAndNegativeArray1.length - 1 | ||
) | ||
).toBe(100) | ||
}) | ||
|
||
it('Testing with zero arrays', () => { | ||
expect(findMaxRecursion(zeroArray, 0, zeroArray.length - 1)).toBe(0) | ||
}) | ||
|
||
it('Testing with empty arrays', () => { | ||
expect(findMaxRecursion(emptyArray, 0, emptyArray.length - 1)).toBe( | ||
undefined | ||
) | ||
}) | ||
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
class AssociationAlgorithm { | ||
constructor (requiredPercentageForAsssociation = 10) { | ||
this.REQUIRED_PERCENTAGE_FOR_ASSOCIATION = requiredPercentageForAsssociation | ||
|
||
this.associations = {} | ||
this.searches = {} | ||
} | ||
|
||
#associate (id, query) { | ||
if (!this.associations[id]) { this.associations[id] = [] } | ||
|
||
this.associations[id].push(query) | ||
} | ||
|
||
#search (id, query) { | ||
if (!this.searches[id]) { this.searches[id] = [] } | ||
|
||
let search = Number(this.searches[id][query]) | ||
|
||
if (!search) search = 0 | ||
|
||
this.searches[id][query] = search + 1 | ||
} | ||
|
||
// Main function to run the algorithm | ||
search (data) { | ||
const { id, views } = data.video | ||
const { query } = data.search | ||
|
||
if (!this.associations[id]) this.associations[id] = [] | ||
|
||
this.#search(id, query) | ||
|
||
const percentageOfViewsFromSearch = (Number(this.searches[id][query]) / Number(views)) * 100 | ||
|
||
if (percentageOfViewsFromSearch > this.REQUIRED_PERCENTAGE_FOR_ASSOCIATION) { | ||
// Associate the video with the search query | ||
|
||
this.#associate(id, query) | ||
} else { | ||
// The video does not have a high enough percentage of views from the query to be associated with it | ||
} | ||
} | ||
|
||
isVideoAssociated (id, query) { | ||
return this.associations[id] && this.associations[id].includes(query) | ||
} | ||
|
||
getAssociations (id) { | ||
return this.associations[id] | ||
} | ||
} | ||
|
||
export default AssociationAlgorithm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import AssociationAlgorithm from '../YoutubeVideoAssociation' | ||
|
||
describe('Youtube Video Association Algorithm', () => { | ||
const search = { | ||
video: { | ||
id: 'dQw4w9WgXcQ', | ||
views: '100' | ||
}, | ||
search: { | ||
query: 'Rick Roll' | ||
} | ||
} | ||
|
||
const algorithm = new AssociationAlgorithm(10) | ||
|
||
test('The video should not be associated after one search', () => { | ||
algorithm.search(search) | ||
|
||
expect(algorithm.isVideoAssociated('dQw4w9WgXcQ', 'Rick Roll')).toBe(false) | ||
}) | ||
|
||
test('The video should be associated after 11 searches', () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You don't even test for that though? |
||
for (let i = 0; i < 10; i++) algorithm.search(search) | ||
}) | ||
}) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.