[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

>"hi uh, im here for the interview"

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 27
Thread images: 9

>"hi uh, im here for the interview"
>>
Great. How are you? Okay, nice to meet you. Please wait for Sarah, the senior engineer on the team you would be working with.

*Recruiter leaves room, Sarah comes in two minutes later*

Sarah: Hey there. Nice to meet you. Given two linked lists, insert nodes of second list into first list at alternate positions of first list.
For example, if first list is 5->7->17->13->11 and second is 12->10->2->4->6, the first list should become 5->12->7->10->17->2->13->4->11->6 and second list should become empty. The nodes of second list should only be inserted when there are positions available. For example, if the first list is 1->2->3 and second list is 4->5->6->7->8, then first list should become 1->4->2->5->3->6 and second list to 7->8.

Use of extra space is not allowed (Not allowed to create additional nodes), i.e., insertion must be done in-place. Expected time complexity is O(n) where n is number of nodes in first list.

Pierced girl:
struct Node
{
int data;
struct Node *next;
};

void push(struct Node ** head_ref, int new_data)
{
struct Node* new_node =
(struct Node*) malloc(sizeof(struct Node));
new_node->data = new_data;
new_node->next = (*head_ref);
(*head_ref) = new_node;
}

void merge(struct Node *p, struct Node **q)
{
struct Node *p_curr = p, *q_curr = *q;
struct Node *p_next, *q_next;

// While therre are avialable positions in p
while (p_curr != NULL && q_curr != NULL)
{
// Save next pointers
p_next = p_curr->next;
q_next = q_curr->next;

// Make q_curr as next of p_curr
q_curr->next = p_next; // Change next pointer of q_curr
p_curr->next = q_curr; // Change next pointer of p_curr

// Update current pointers for next iteration
p_curr = p_next;
q_curr = q_next;
}

*q = q_curr; // Update head pointer of second list
}

Sarah: Wow, that was fast. When can you start?
>>
>>3509120
What coin is this?
>>
>>3509208

>linked lists
>"what coin is this"

you're not going to make it
>>
File: 1504818688676.jpg (112KB, 1107x638px) Image search: [Google]
1504818688676.jpg
112KB, 1107x638px
>>3509082
>ok what do u think about golems
>>
if she can do the job then i'd hire her. if she can't, then i wouldn't hire her. how is this complicated?
>>
>>3509269
i work as an Md as admin and appropriate services for elderly individuals. weather you can or cant change a bed pan is independent of the elderly person giving access or any personal permissions to the OP pic. to that individual i would say piercings and makeup are unhygienic for the field, if you pass my scrutiny you must still abide by hospital rules (dress code, and attitude) or leave. simple as that.
>>
>>3509082
Thank you for your service, anon. Btw, couldnt the VA remove that shrapnel?
>>
>>3509120
Alternate method:
>be non white
“OMG YES HIRED!”
>>
>>3509120
link my cock to your lips desu senpai
>>
>>3509082
*"trap"door to crocdile tank opens* "Next!"
>>
>>3509082
Please take a seat on the couch, let me turn on the camera.
>>
File: frei refills.png (29KB, 318x271px) Image search: [Google]
frei refills.png
29KB, 318x271px
>>3509268
kek
>>
File: 1505600465286.jpg (11KB, 268x263px) Image search: [Google]
1505600465286.jpg
11KB, 268x263px
Heres the pole bitch. Start dancing. Mfw I was a pimp four years ago.
>>
File: Girls-Laughing.jpg (565KB, 1080x720px) Image search: [Google]
Girls-Laughing.jpg
565KB, 1080x720px
>>3509082
>she thinks I will pay her a living wage
>>
>>3509269
I say that people like that are more like to be mentally unstable. That doesn't mean she is mentally unstable, but the possibility is there.
>>
File: 2012-02-25 10.37.46.jpg (3MB, 3264x2448px) Image search: [Google]
2012-02-25 10.37.46.jpg
3MB, 3264x2448px
Tradesman here, we don't really bother with formal interviews.

Be here at 6:45am tomorrow, wear long sleeves and pants, tie your hair in a bun and take that shit out of your face. Failing any of these is grounds for instant dismissal under OH&S laws.

I guarantee she will be sacked by 6:50 for failing one of these or being late then she can go back to crying about the wage gap without realizing she just threw away the best paying she will ever have.
>>
File: IMG_1657.png (45KB, 778x512px) Image search: [Google]
IMG_1657.png
45KB, 778x512px
>>3510297
Giv trades job
>>
File: boomers.jpg (136KB, 1140x760px) Image search: [Google]
boomers.jpg
136KB, 1140x760px
>>3510339
Just go into any site and ask, you'll have 3 apprenticeship offers by lunch time.
>>
>>3510297
Is that a coal mine? How is mining as a career? Genuinely curious, just moved somewhere with a lot of mining going on and looking for some kind of work.
>>
>>3510220
i've seen you say the same shit in other threads. just letting you know: you're fucking retarded
>>
File: untitled-7-2.jpg (946KB, 4212x2371px) Image search: [Google]
untitled-7-2.jpg
946KB, 4212x2371px
>>3510365
That is a stone quarry for making concrete, I have also worked on silver and zinc mines and a natural gas processing plant. I was doing upgrades / construction so weren't part of operations but spent plenty of time with those guys.

It's a pretty good gig with great rates and 50/50 time split (eg. 3 weeks of work, 3 weeks off). The worst part is nepotism so you'll always be working with someones incompetent son-in-law or brother, best part is the freedom both financially and from being so far from society.
>>
>>3510398
These looking people almost always have daddy issues or some form of mental illness.
>>
>>3510339

Based
>>
>>3510398
>I have a neck tattoo and multiple piercings
>>
I'd smash OP.
>>
>>3509082
>Come right this way
>Right through this door
>Slams door behind it
>It finds its self in the backally
Thread posts: 27
Thread images: 9


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.