Skip to content

Instantly share code, notes, and snippets.

View vickywane's full-sized avatar
🎯
Break stuff ..... Make Stuff ...

Nwani Victory vickywane

🎯
Break stuff ..... Make Stuff ...
View GitHub Profile
@vickywane
vickywane / Trie.js
Last active March 3, 2021 01:38 — forked from tpae/Trie.js
Trie.js - super simple JavaScript implementation
// Trie.js - JS implementation
// https://en.wikipedia.org/wiki/Trie
// Inspired by Tpae's implementation
// we start with the TrieNode
function TrieNode(key) {
// the "key" value will be the character in sequence
this.key = key;
@vickywane
vickywane / codility_solutions.txt
Created August 5, 2020 21:36 — forked from lalkmim/codility_solutions.txt
Codility Solutions in JavaScript
Lesson 1 - Iterations
- BinaryGap - https://codility.com/demo/results/trainingU2FQPQ-7Y4/
Lesson 2 - Arrays
- OddOccurrencesInArray - https://codility.com/demo/results/trainingFN5RVT-XQ4/
- CyclicRotation - https://codility.com/demo/results/trainingSH2W5R-RP5/
Lesson 3 - Time Complexity
- FrogJmp - https://codility.com/demo/results/training6KKWUD-BXJ/
- PermMissingElem - https://codility.com/demo/results/training58W4YJ-VHA/