Passa al contenutoPassa al piè di pagina
  • Lavori
  • Aziende
  • Stipendi
  • Per le aziende

      Migliora la tua carriera

      Scopri le tue potenzialità di guadagno, trova lavori da sogno e condividi approfondimenti su lavoro e vita privata in forma anonima.

      employer cover photo
      employer logo
      employer logo

      TuSimple

      Questa è la tua azienda?

      Circa
      Recensioni
      Stipendi e benefit
      Lavori
      Colloqui
      Colloqui
      Ricerche correlate: Recensioni su TuSimple | Offerte di lavoro di TuSimple | Stipendi di TuSimple | Benefit di TuSimple
      Colloqui di TuSimpleColloqui per Software Development Engineer General presso TuSimpleColloquio di TuSimple


      Glassdoor

      • Chi siamo
      • Contattaci

      Aziende

      • Account Business gratuito
      • Spazio per le aziende
      • Blog per le aziende

      Informazioni

      • Aiuto
      • Linee guida
      • Condizioni d'uso
      • Privacy e scelte pubblicitarie
      • Non vendere né condividere le mie informazioni
      • Strumento per l'accettazione dei cookie

      Lavora con noi

      • Inserzionisti
      • Carriere
      Scarica l'app

      • Cerca:
      • Aziende
      • Lavori
      • Località

      Copyright © 2008-2026. Glassdoor LLC. "Glassdoor," "Worklife Pro," "Bowls" e il relativo logo sono marchi registrati di Glassdoor LLC.

      Aziende seguite

      Non lasciarti sfuggire opportunità e informazioni privilegiate seguendo le aziende dove vorresti lavorare.

      Ricerche di lavoro

      Ricevi suggerimenti e aggiornamenti personalizzati avviando le tue ricerche.

      Le migliori aziende per "stipendio e benefit" vicino a te

      avatar
      DONE by NONE
      3.8★Stipendio e benefit
      avatar
      Digital Natives
      4.4★Stipendio e benefit

      Colloquio per Software Development Engineer General

      15 nov 2018
      Dipendente anonimo
      Offerta accettata
      Esperienza positiva
      Colloquio difficile

      Candidatura

      Ho sostenuto un colloquio presso TuSimple

      Colloquio

      Great interviewer with enthusiastic and professional. The code interview was not that easy but the problem is of high quality. In the second round, we went through lots of details about previous working experience, and the interviewer, also the team leader, was very enthusiastic about his work.

      Domande di colloquio [1]

      Domanda 1

      Given two alphabet strings str1 and str2. You can change the characters in str1 to any alphabet characters in order to transform str1 to str2. One restriction is, in each operation, you should change all the same characters simultaneously. What's more, you may use another special character * if necessary, which means during each operations, you may change the alphabet characters to *, or change each * to a specific character. We want to know the minimum operation times. If impossible, return -1. Template int MinOpTimes(string str1, string str2) { //... }; Examples Example 1: str1: accs, str2: eeec operation 1: change 'a'->'e'; // str1: eccs operation 2: change 'c'->'e'; // str1: eees operation 3: change 's'->'c'; // str1: eeec return 3; Example 2: str1: accs, str2: efec return -1; Example 3: str1: abb , str2: baa operation 1: change 'a'->'*'; // str1: *bb operation 2: change 'b'->'a'; // str1: *aa operation 3: change '*'->'b'; // str1: baa return 3;
      Rispondi alla domanda