Skip to content

Commit 38a4178

Browse files
committedDec 2, 2020
fix(book): update company names
1 parent b3039ab commit 38a4178

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed
 

‎book/content/part02/array.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ maxSubArray([-3, 4,-1, 2, 1, -5]); // 6 (sum [4,-1, 2, 1])
522522
maxSubArray([-2, 1, -3, 4, -1, 3, 1]); // 7 (sum [4,-1, 3, 1])
523523
----
524524

525-
_Common in interviews at: Amazon, Apple, Google, Microsoft, Facebook_
525+
_Common in interviews at: FAANG, Microsoft_
526526
// end::array-q-max-subarray[]
527527

528528
[source, javascript]

‎book/content/part02/hash-map.asc

+2-2
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ Something that might look unnecessary is the `Math.max` when updating the `lo` p
627627

628628
// end::hashmap-q-two-sum[]
629629

630-
_Common in interviews at: Amazon, Google, Apple._
630+
_Common in interviews at: FAANG._
631631

632632
Examples:
633633

@@ -656,7 +656,7 @@ _Solution: <<hashmap-q-two-sum>>_
656656

657657
// end::hashmap-q-subarray-sum-equals-k[]
658658

659-
_Common in interviews at: Facebook, Google, Amazon_
659+
_Common in interviews at: FAANG_
660660

661661
Examples:
662662

‎book/content/part02/linked-list.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ mergeTwoLists(2->3->4, 1->2); // 1->2->2->3->4
584584
mergeTwoLists(2->3->4,null); // 2->3->4
585585
----
586586

587-
_Common in interviews at: Amazon, Adobe, Microsoft, Google_
587+
_Common in interviews at: FAANG, Adobe, Microsoft_
588588
// end::linkedlist-q-merge-lists[]
589589

590590
[source, javascript]

‎book/content/part02/queue.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ counter.request(3100); // 1 (last requests was 100 ms ago, > 10ms, so doesn't co
103103
counter.request(3105); // 2 (last requests was 5 ms ago, <= 10ms, so it counts)
104104
----
105105

106-
_Common in interviews at: Google, Bloomberg, Yandex_
106+
_Common in interviews at: FAANG, Bloomberg, Yandex_
107107
// end::queue-q-recent-counter[]
108108

109109

‎book/content/part03/binary-search-tree-traversal.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Post-order traverval will return `3, 4, 5, 15, 40, 30, 10`.
105105

106106
// end::binary-tree-q-diameter-of-binary-tree[]
107107

108-
_Common in interviews at: Facebook, Amazon, Google_
108+
_Common in interviews at: FAANG_
109109

110110
// Example 1:
111111
// [graphviz, tree-diameter-example-1, png]

‎book/content/part03/graph-search.asc

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ _Solution: <<graph-q-course-schedule>>_
155155

156156
// end::graph-q-critical-connections-in-a-network[]
157157

158-
_Common in interviews at: Amazon, Google._
158+
_Common in interviews at: FAANG._
159159

160160
Examples:
161161

‎lab/exercises/10-mixed/integer-to-words.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const HUNDREDS = new Map([
1010
]);
1111

1212
/**
13-
* You are creating a basic number-to-speech algorithms to use at Google.
13+
* You are creating a basic number-to-speech algorithms to use at search engine company.
1414
* The first part is to convert a given number into its text representation.
1515
* The 2nd part, is to take that text and synthetize the voice.
1616
* We are going to focus on the first part for this exercise.

0 commit comments

Comments
 (0)
Failed to load comments.