Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d70aec2

Browse files
Merge pull request amejiarosario#95 from amejiarosario/fix/update-companies
fix(book): update company names
2 parents b3039ab + 38a4178 commit d70aec2

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

‎book/content/part02/array.asc

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /