Igor Kravets

Igor Kravets

lego catapult

lego catapult

Ant-sized scorpion

Ant-sized scorpion

По Европе 2006

По Европе 2006

Vintage video Ruka 2007-2008

Vintage video Ruka 2007-2008

Cu Chi Tunnels hideout try

Cu Chi Tunnels hideout try

Me Cong Delta Big Boat

Me Cong Delta Big Boat

Nha Trang street crossing #2

Nha Trang street crossing #2

Nha Trang city beach raining

Nha Trang city beach raining

Mr. Tambourine Man

Mr. Tambourine Man

Пікірлер

  • @Nokejunky
    @NokejunkyКүн бұрын

    I cannot even believe this happened. If that's true then please be sure this is fully the company fault. Just be happy that you managed leave such a toxic environmwnt

  • @joshuaokhiria7347
    @joshuaokhiria73474 күн бұрын

    I definitely need to practice a lot before taking this. I bet they are not just looking at yowur solution, there's a coding standards they are looking for as well. So it possible to solve the problem and provide the desired output but still fail the challenge. Time to revisit python basics and data structures

  • @havefun5519
    @havefun55194 күн бұрын

    Seems 2 problem-solving coding challenges, as long as pass one, it will be passed. I've failed the coding challenge for a TDD assignment, 2 reasons, my bad, first face TDD assignment, 2nd I like testing after I coding sth, but the system seems slow but the time is flys. So finally, I fail.

  • @IgorKravets81
    @IgorKravets8117 күн бұрын

    As a mentioned before: ao-effect style game (which is shipped with my application as an example) and the Real GRID - are different. Ao-effect is an old version of first arena game. So they are different. The main difference is that GRID game has no OWN token. You have to use real CRED process to pay for the participation. You must change the code of your code to at least "know" two PIDs - one the game itself, other - the CRED process to pay for the game. Your bot should have CRED on balance (give it some) and then it should pay Grid game 1000 units (one CRED) to start playing. Please see official post in @games section for reference.

  • @omdevs
    @omdevs19 күн бұрын

    😂

  • @3ombieautopilot
    @3ombieautopilot29 күн бұрын

    Where are you now in your journey in becoming a software dev?

  • @zacardeedomingo6839
    @zacardeedomingo683929 күн бұрын

    kickstart it instead (if the scooter has one)

  • @abdulrafayakber3798
    @abdulrafayakber3798Ай бұрын

    i think you can just add these string characters reversely into array and then just convert it into string .This is an easy method let str='ab-cd' let newStr=[] for (let i = 0, j = str.length - 1; i < str.length; i++, j--) { newStr[j] = str[i]; } // Convert the array back to a string newStr = newStr.join(''); console.log(newStr)

  • @SomtoMaduewesi
    @SomtoMaduewesiАй бұрын

    Wow. You did a good job. The only thing I think you missed was you used an array sort method instead of an array reverse method, on the array with only letters. Anyways. I never would have solved this honestly. 😂

  • @hrithikmishra1093
    @hrithikmishra1093Ай бұрын

    void main() { String s = "a-bC-dEf=ghlj!!"; print(Solution().reverseLettersButNotCharacters(s)); } class Solution { String reverseLettersButNotCharacters(String s) { final runeIterable = s.split('').toList(); int left = 0; int right = runeIterable.length - 1; while (left < right) { final condition1 = runeIterable[left].codeUnitAt(0) >= 65 && runeIterable[left].codeUnitAt(0) <= 90; final condition2 = runeIterable[left].codeUnitAt(0) >= 97 && runeIterable[left].codeUnitAt(0) <= 122; if (condition1 || condition2) { final innerCondition1 = runeIterable[right].codeUnitAt(0) > 65 && runeIterable[right].codeUnitAt(0) < 90; final innerCondition2 = runeIterable[right].codeUnitAt(0) > 97 && runeIterable[right].codeUnitAt(0) < 122; if (innerCondition1 || innerCondition2) { //Perform swap final temp = runeIterable[left]; runeIterable[left] = runeIterable[right]; runeIterable[right] = temp; left++; } right--; } else { left++; } } final result = runeIterable.join(); return result; } } O(n) Sliding window solution for first problem. Can you use other tabs, vscode when you solve the Coding Test on Turing?

  • @ramses_talks
    @ramses_talksАй бұрын

    Are you allowed to switch tabs in turing tests? Isn't your screen recorded?

  • @aadil4236
    @aadil4236Ай бұрын

    Thank you sir! I appriciate your effort. I learned a lot!

  • @quocthai9382
    @quocthai93822 ай бұрын

    Just need two pointer and check variables for each pointer, right?

  • @hilalaysal2818
    @hilalaysal28182 ай бұрын

    💗

  • @wickedknock9798
    @wickedknock97982 ай бұрын

    Brave man than 90 percent ty

  • @riadhch5643
    @riadhch56432 ай бұрын

    ههههههههههه

  • @programmingchannel6264
    @programmingchannel62643 ай бұрын

    I failed the challenge too, I felt my first question didn't give me enough information or explanation to solve it, so I by passed and solved the second challenge in less than 5 minutes. Even though I failed the challenge, the tiring profile opened for me. Am just going to fill the profile while waiting for a response

  • @JourneyWithMohsin
    @JourneyWithMohsin2 ай бұрын

    So what happened, did you make it?

  • @oldboyhr
    @oldboyhr3 ай бұрын

    Браво и певцу и режиссеру-оператору!

  • @surekhasetty9753
    @surekhasetty97533 ай бұрын

    After completion of coding challenge what is the next step?

  • @IgorKravets81
    @IgorKravets813 ай бұрын

    In my case: post a video of a failure ) although couple of years ago I passed similar test for toptal.com site and the next step was one more similar test, but online via a zoom call. I didn't pass that one, so I don't know what are steps beyond that.

  • @franky1116
    @franky11163 ай бұрын

    This env is not confortable at all. Explanation needs constrains too. The challange here is keep your stress out😅

  • @meetpatel2720
    @meetpatel27204 ай бұрын

    In coding test what they ask basically?

  • @meetpatel2720
    @meetpatel27204 ай бұрын

    Can you tell me what further goes after passing skill assessment ?

  • @SonOfHtayta
    @SonOfHtayta4 ай бұрын

    My answer in C#10 using Stack data structure using System.Collections; using System.Text; using System.Text.RegularExpressions; //string str = "ab-cd"; string str = "a-bC-dEf=ghlj!!"; string result = ""; Stack<char> lettersStack = new Stack<char>(); ArrayList notLettersIndices = new ArrayList(); for (int i = 0; i < str.Length; i++) { var c = str[i]; if (Regex.IsMatch(c.ToString(), @"^[a-zA-Z]+$")) lettersStack.Push(c); else notLettersIndices.Add(new NotLettersIndices { charracter = c, index = i }); } while (lettersStack.Count() != 0) { result += lettersStack.Pop().ToString(); } foreach (NotLettersIndices item in notLettersIndices) { var aStringBuilder = new StringBuilder(result); aStringBuilder.Insert(item.index, item.charracter.ToString()); result = aStringBuilder.ToString(); } Console.WriteLine(result); Console.WriteLine(result == "j-lh-gfE=dCba!!"); public struct NotLettersIndices { public char charracter { get; set; } public int index { get; set; } }

  • @oinn6216
    @oinn62164 ай бұрын

    It was really fun. Anger, depression, hate and hope all in one video. Good luck next time :)

  • @ayushman_sr
    @ayushman_sr5 ай бұрын

    def rev(str): n = len(str) chk = lambda s: ord("z") >= ord(s) >= ord("A") p1, p2 = 0, n-1 str = list(str) while p1 < p2: if chk(str[p1]) and chk(str[p2]): t = str[p1] str[p1] = str[p2] str[p2] = t p1 += 1 p2 -= 1 else: if not chk(str[p1]): p1 +=1 if not chk(str[p2]): p2 -= 1 return "".join(c for c in str)

  • @devonsensi233
    @devonsensi2336 ай бұрын

    I just tried it never worked 😢

  • @IgorKravets81
    @IgorKravets816 ай бұрын

    Please contact your manufacturer.

  • @waynedrew975
    @waynedrew9754 ай бұрын

    It won't when he's using the electric start and ur not. Omg some people are thick

  • @bilalaslam6159
    @bilalaslam61596 ай бұрын

    Is it allowed to google during test ?

  • @IgorKravets81
    @IgorKravets816 ай бұрын

    I'm not sure if it is forbidden. But you could switch to another window during the process. Maybe it is logged somehow though

  • @augustonunesfarias4062
    @augustonunesfarias40626 ай бұрын

    bruuuh 💀

  • @AlamKhan-yt9wd
    @AlamKhan-yt9wd6 ай бұрын

    They didn't pay you, really!!!😢 The ceo is an evil idiot. He must have to pay you. & This thing is very good that you're not in that idiot ceo's company anymore. It's not your fault. They hired you by taking test & judging. So if you're not a good fit It's their failure of judgment. & they obviously should have to pay you for that duration as you did hard work.

  • @IgorKravets81
    @IgorKravets816 ай бұрын

    Their contract specifically said that the payment is by actual performed tasks, which are measured by closed tickets. Strangely enough I did have a couple of them closed.

  • @AlamKhan-yt9wd
    @AlamKhan-yt9wd6 ай бұрын

    Did you take another try??

  • @IgorKravets81
    @IgorKravets816 ай бұрын

    Not yet. I got a fulltime job at a company

  • @AlamKhan-yt9wd
    @AlamKhan-yt9wd6 ай бұрын

    @IgorKravets81 very nice. Could you make a video about your current status/job role/update

  • @IgorKravets81
    @IgorKravets816 ай бұрын

    @@AlamKhan-yt9wd I don't think there is anything valuable left to share... Although I went through quite a lot of interviews and also screwed up a bunch of them. But all the advice I possibly could give on those - are already covered on KZread extensively. I think the best advice there is to take every interview you can - gain experience on passing them

  • @hilalinan3209
    @hilalinan32096 ай бұрын

    @@IgorKravets81 I tried the practice challenge, the question was not difficult, but when I try to run tests, it failed and it showed errors some places but I never understand why. I would prefer using IDE. I mean the get method of an arraylist yielded an error. There were many errros. it was very sad so I am hesitating to start the code challenge.

  • @tmwquavo7459
    @tmwquavo74597 ай бұрын

    bro this turing bootcamp is free?

  • @JoseRodriguez-en8bo
    @JoseRodriguez-en8bo7 ай бұрын

    WTF kinda hack is that!?

  • @IgorKravets81
    @IgorKravets817 ай бұрын

    There turned out to be a faulty starter relay. Rusty contact plates needed a shake

  • @mmbproducer5969
    @mmbproducer59696 ай бұрын

    Did you throwtle while doing so?

  • @itsPandaDan
    @itsPandaDan6 ай бұрын

    I assume he was pulling the throttle - as if a normal start.

  • @jaia466
    @jaia4668 ай бұрын

    If u cant copy text from a website, the best solution to copy texts is to press CTRL + P then you can copy text from there 😂

  • @jpg6113
    @jpg61138 ай бұрын

    Thank you for posting this! I also made the mistake of underestimating it and just going in without any practice for months.

  • @IgorKravets81
    @IgorKravets818 ай бұрын

    Next time will be much easier!

  • @nikasamkharadze4656
    @nikasamkharadze46567 ай бұрын

    so its not a rush? ive been getting emails from turing encouraging me to take test? because it think its better to practice for a while for me too ..

  • @lupebrown1246
    @lupebrown12468 ай бұрын

    He SHHHHLAAAAPPPPPED those cheeks down.

  • @yash3shinde
    @yash3shinde8 ай бұрын

    The application you created would definitely take me 2days. Thanks for all the beautiful advice btw...❤

  • @the_CodingTraveller
    @the_CodingTraveller8 ай бұрын

    Respect for going live with this, very nice. Keep it up.

  • @IgorKravets81
    @IgorKravets818 ай бұрын

    Thanks!

  • @jyoshnasaripilli
    @jyoshnasaripilliАй бұрын

    @@IgorKravets81 Have you passed the test now? You got job through Turing?

  • @hextiandro
    @hextiandro9 ай бұрын

    Yo vi tu video ahora, y te agradezco mucho por compartir este sensacional video 🚀🚀🚀

  • @IgorKravets81
    @IgorKravets819 ай бұрын

    Im glad it helped somehow ) thanks!

  • @mubashirwaheed474
    @mubashirwaheed4749 ай бұрын

    29:00 "Yeah I am not gonna make it in two minutes" cracked me up lmao but thanks for the video tho

  • @MarchMadeFrog
    @MarchMadeFrog9 ай бұрын

    nice

  • @kbyoungblood6948
    @kbyoungblood69489 ай бұрын

    Those are good advices, thank you

  • @IgorKravets81
    @IgorKravets819 ай бұрын

    Thank you!

  • @didierliango6402
    @didierliango64029 ай бұрын

    Very nice video.

  • @Kubernetes7627
    @Kubernetes76279 ай бұрын

    Very wonderful channel with its genius idea , my dear as you passed the coding challenge that i think "3rd stage" of that company , that by the way depend on the manager , I know many who works there and fired and a so little still , that agency of Taxes is the most horrible one !! just to know about the reasons for the next : you was intelligent enough to know many of your mistakes or areas that needs to be increased .. but lets talk a little about the entire process from hiring to the job itself it is supposed that the hiring process measured everything , they saw your code , you said the quality , others say that speed and that agency intended to do that to make stressful , besides unclear of the problem itself to shock the applicant , like that behavior of type of the question is common .. but at crossover it is much more , but like providing task of a week to make in days that a behavior are them own .. and some say about that they do that if you can deal + coding skills .. not important to finish them all , this about speed or quality as you passed the process , why them do that ? besides what I mentioned that they firing usually and no permanent career with them , it takes about 6 months , after working like non human . some call that it is high turnover , but this originates to them state "the place that this company is" what i want to say for the future ? it seems you are a good experienced or skilled developer that you can deal , with not bad at all code skills but what you need is to optimize your code more , true is not enough + Documentation as you interested in the quality .. also the may think you copied from Stackoverflow or from GPT , so the firing came speed.

  • @frostcodes5306
    @frostcodes530610 ай бұрын

    Thanks for the video, Keep Going 💪wishing you all the best

  • @IgorKravets81
    @IgorKravets819 ай бұрын

    Thanks!

  • @sergiocoder
    @sergiocoder10 ай бұрын

    Can anyone confirm that Turing is a legit way to find jobs? I passed a coding challenge and a few tech stack tests, but failed the practical challenge because their IDE is utterly slow and lacks autocomplete. And I'm also starting to doubt about the quality of this service - first of all, it's kind of silly that they advertise about "U.S. companies" jobs like every developer on the planet dreams to work for a USA company, secondly their quizzes are just some low quality garbage written by a junior dev, and moreover the questions often have nothing to do with the technology itself but rather with some popular 3rd-party library. Also, KZread is full of positive reviews published on their own channel instead of reviews from real people. that's what bugs me as well.

  • @millennyfeng9502
    @millennyfeng950210 ай бұрын

    We're legit!! Can't wait to have you

  • @sergiocoder
    @sergiocoder10 ай бұрын

    @@millennyfeng9502 nah, you can't have cause I'm from a banned country

  • @rekcahY
    @rekcahY10 ай бұрын

    it's legit but passing the tests may be completely ignored by them. Best way is likely getting into contact with some from there to have real chances.

  • @pinakeekaushik4311
    @pinakeekaushik43114 ай бұрын

    @@rekcahY Like even after passing all the rounds , do we have to nudge them for reminder? How was your experience can you share. Thanks

  • @user-vj3gm6on9e
    @user-vj3gm6on9e10 ай бұрын

    test =(str)=> { return str.split("").reverse().join().replaceAll(',',""); } let res = test("ab-cd"); console.log(res)

  • @Splash-zt7kj
    @Splash-zt7kj10 ай бұрын

    Informative

  • @mr.pingpong502
    @mr.pingpong50211 ай бұрын

    Do you get another chance to clear the test?

  • @IgorKravets81
    @IgorKravets8111 ай бұрын

    Yes, after several months. I don't remember how much now. I think it is shown at the end of the video

  • @elimusa6764
    @elimusa67646 ай бұрын

    yes, after 3 months

  • @jayangavliyanage
    @jayangavliyanage11 ай бұрын

    O(n) solution without any unnecessary if conditions (Increases the readability) let s = "Aa-D--dEe"; let frontPtr = -1; let backPtr = s.length; let outPutArr = []; for(let i = 0; i < s.length/2 ; i++) { let frontCharacter = s.charAt(++frontPtr); let backCharacter = s.charAt(--backPtr); while(!(/[a-zA-Z]/).test(frontCharacter)) { outPutArr[frontPtr] = frontCharacter; frontCharacter = s.charAt(++frontPtr); } while(!(/[a-zA-Z]/).test(backCharacter)) { outPutArr[backPtr] = backCharacter; backCharacter = s.charAt(--backPtr); } outPutArr[frontPtr] = backCharacter; outPutArr[backPtr] = frontCharacter; } let result = outPutArr.join(""); return result;

  • @kardano.6114
    @kardano.611411 ай бұрын

    Sharing this kind of failures is very generously. Congrats, you gonna be in better places on someday. Keep it up .

  • @IgorKravets81
    @IgorKravets8111 ай бұрын

    Thank you! I hope it will be useful to someone!