|
|
הוסיפו מידע על מעסיק
|
מתכנת
|
|
שאלות מראיונות עבודה לתפקיד
|
|
|
|
|
Theworker >
תוכנה
>
פירוט שאלות מראיונות עבודה לתפקיד מתכנת
פירוט שאלות מראיונות עבודה לתפקיד מתכנת
370 - 361 מתוך 2128
|
|
|
|
ראיון לתפקיד מתכנת
בחברת גוגל
אוגוסט 2022
|
15.09.2022
|
|
|
פרטים לגבי התהליך |
חמש ראיונות 4 עברית אחד אנגלית |
|
שאלות מתוך הראיון |
This problem was asked by Google.
In a directed graph, each node is assigned an uppercase letter. We define a path's value as the number of most frequently-occurring letter along that path. For example, if a path in the graph goes through "ABACA", the value of the path is 3, since there are 3 occurrences of 'A' on the path.
Given a graph with n nodes and m directed edges, return the largest value path of the graph. If the largest value is infinite, then return null.
The graph is represented with a string and an edge list. The i-th character represents the uppercase letter of the i-th node. Each tuple in the edge list (i, j) means there is a directed edge from the i-th node to the j-th node. Self-edges are possible, as well as multi-edges. |
|
תשובות |
הוסף תשובה
|
לצפיה בתשובות
|
|
|
|
|
נובמבר 2022
|
|
DFS on the graph.
|
|
|
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על גוגל :
|
|
|
ראיון לתפקיד מתכנת
בחברת ווביקס
יוני 2022
|
14.09.2022
|
|
|
פרטים לגבי התהליך |
ראיון טכני עם ראש צוות |
|
שאלות מתוך הראיון |
איך לממש מחסנית באמצעות מערך
והשאלה השניה היא איך לממש תור באמצעות מחסנית |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על ווביקס :
|
|
|
ראיון לתפקיד מתכנת
בחברת אינטל
יולי 2022
|
09.09.2022
|
|
|
פרטים לגבי התהליך |
ריאיון טכני ראשוני, לפתור את התרגיל בזמן לינארי |
|
שאלות מתוך הראיון |
למיין מערך של שלושה צבעים ירוק כחול וסגול כך שהתאים הסגולים הכי ימנים הירוקים הכי שמאלים |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על אינטל :
|
|
|
ספטמבר 2022
|
08.09.2022
|
|
|
פרטים לגבי התהליך |
שאלון אינטרנטי בקודיליטי |
|
שאלות מתוך הראיון |
This is a demo task.
Write a function:
class Solution { public int solution(int[] A); }
that, given an array A of N integers, returns the smallest positive integer (greater than 0) that does not occur in A.
For example, given A = [1, 3, 6, 4, 1, 2], the function should return 5.
Given A = [1, 2, 3], the function should return 4.
Given A = [−1, −3], the function should return 1.
Write an efficient algorithm for the following assumptions:
N is an integer within the range [1..100,000];
each element of array A is an integer within the range [−1,000,000..1,000,000]. |
|
תשובות |
הוסף תשובה
|
לצפיה בתשובות
|
|
|
|
|
נובמבר 2022
|
|
in js:
function smallestPosNum(A){
let min=1
while(A.includes(min){
min++
}
return min
}
|
|
|
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על צ'קפוינט :
|
|
|
ראיון לתפקיד מתכנת
בחברת דוולור
ספטמבר 2022
|
06.09.2022
|
|
|
פרטים לגבי התהליך |
ארבע ראיונות שניים עם שאלות בתכנות ושיחת הכרות ואז ראיון עם hr |
|
שאלות מתוך הראיון |
מה ההבדל בין מחלקה abstract ל interface |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על דוולור :
|
|
יש לכם מה להוסיף ?
|
|
|
|
|
|