Become a member
Sign in
Alexander V
Alexander V

Alexander V

26 Following
55 Followers
  • Profile
  • Claps

Latest

Alexander V
Alexander V
Jul 17, 2015 · 2 min read

Tries — javascript simple implementation

What is a trie?

A trie is a tree. It’s an n-ary tree, designed for efficient retrieval. How efficient is efficient? A trie allows us to search for a string in O(m), where m is the number of characters in that string. Do…

347

3 responses
Alexander V
Alexander V
May 6, 2015 · 2 min read

Network Panel — chrome developer tools

NOTE: always disable cache when recording network traffic

Filters:

Only interested in traffic associated with font resources? — use a filter — font filter.

1

Alexander V
Alexander V
May 5, 2015 · 1 min read

Chrome Developer Tools — The Console Panel

Why — accelerate debugging

The console panel gives the ability to inject javascript into the context of the current page.

Console API:

Alexander V
Alexander V
Oct 18, 2014 · 2 min read

Linked List of Integers — Remove a node

*The formulation of the question comes from 28 questions by Arden Dertat
Given a linked list of integers and an integer, delete every node of the linked list containing the value.

Alexander V
Alexander V
Oct 9, 2014 · 1 min read

Parsing mathematical expressions into a binary tree — Part 2

The second part of the problem involved adding parentheses functionality, which turned out easier than expected.

2