Igor Kravets
Igor Kravets
  • Видео 96
  • Просмотров 90 075
Sync-Grid Game in Action
Sync-Grid Game in Action
Просмотров: 54

Видео

AOS arena and bots development easy steps to start
Просмотров 4814 дней назад
Start creating your application with AOS-WD aos-wd.vercel.app/
mor ve otesi - cambaz (yabanci remix)
Просмотров 1512 месяца назад
mor ve otesi - cambaz (yabanci remix)
dirty old town. directed by sasha
Просмотров 413 месяца назад
dirty old town. directed by sasha
lego catapult
Просмотров 554 месяца назад
lego catapult
Ant-sized scorpion
Просмотров 4911 месяцев назад
Ant-sized scorpion
How i got hired as a developer and fired in one week.
Просмотров 3,2 тыс.Год назад
These are i hope some helpfull tips and mistakes to avoid when getting a job as a software developer. Tip 0. Be confident on interviews. Show some knowlwdge. Don't explicitly say you are a Junior. Tip 1: Make your test functional and somewhat usefull. Tip 2: Doesn't matter if your spent twice the amount of time. Just do quality and might get hired. Mistake 1. Do ready everything in advance. The...
Iiko card: создаем простую акцию с ценой part 2
Просмотров 101Год назад
Iiko card: создаем простую акцию с ценой part 2
Iiko Card: создаем простую акцию с особой ценной в зависимости от состава чека
Просмотров 201Год назад
Iiko Card: создаем простую акцию с особой ценной в зависимости от состава чека
How i've failed programming challenge on Turing.com
Просмотров 40 тыс.Год назад
Thats how its done when there is no preparation and warm up. 1. I tried to copy the template to VSCode using Ctrl C - Ctr V and just messed up the template. 2. Incorrectly read the task. It should do reverse() not sort(). 3. Did too little sample tests (thats why in showed OK inspite of major logical mistake). 4. I didn't do any warmups for a month. In fact i haven't coded in a while - thats wh...
По Европе 2006
Просмотров 222 года назад
По Европе 2006
до того, как ардуино появилось на свет
Просмотров 132 года назад
до того, как ардуино появилось на свет
Электробайк инженера Дормирекова (выезд)
Просмотров 122 года назад
Электробайк инженера Дормирекова (выезд)
Vintage video Ruka 2007-2008
Просмотров 162 года назад
Vintage video Ruka 2007-2008
Driving from Nai Harn to Rawai. Sample of Thailand leftside up/down curved hill road.
Просмотров 376 лет назад
Driving from Nai Harn to Rawai. Sample of Thailand leftside up/down curved hill road.
Me Cong Delta Small boat transfer
Просмотров 547 лет назад
Me Cong Delta Small boat transfer
Vietnam sugar crane juice machine
Просмотров 897 лет назад
Vietnam sugar crane juice machine
Cu Chi Tunnels hideout try
Просмотров 437 лет назад
Cu Chi Tunnels hideout try
Me Cong Delta Hello to family interview
Просмотров 487 лет назад
Me Cong Delta Hello to family interview
Me Cong Delta Crocodile farm. Feeding crocs.
Просмотров 667 лет назад
Me Cong Delta Crocodile farm. Feeding crocs.
Me Cong Delta Big Boat
Просмотров 97 лет назад
Me Cong Delta Big Boat
Nha Trang street crossing #2
Просмотров 257 лет назад
Nha Trang street crossing #2
Crossing a lake on a Vietnamese authentic boat
Просмотров 127 лет назад
Crossing a lake on a Vietnamese authentic boat
Vietnam python cuddling with a duck
Просмотров 1717 лет назад
Vietnam python cuddling with a duck
Nha Trang city beach raining
Просмотров 377 лет назад
Nha Trang city beach raining
Mr. Tambourine Man
Просмотров 497 лет назад
Mr. Tambourine Man
Улучшение шавермы. Патент.
Просмотров 407 лет назад
Улучшение шавермы. Патент.
Коммисара Смирнова 6/7
Просмотров 197 лет назад
Коммисара Смирнова 6/7
Honey, the Deers act Strange! (6)
Просмотров 168 лет назад
Honey, the Deers act Strange! (6)
Honey, the Deers act strange! (5)
Просмотров 2388 лет назад
Honey, the Deers act strange! (5)

Комментарии

  • @joshuaokhiria7347
    @joshuaokhiria7347 2 дня назад

    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
    @havefun5519 2 дня назад

    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
    @IgorKravets81 15 дней назад

    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
    @omdevs 17 дней назад

    😂

  • @3ombieautopilot
    @3ombieautopilot 27 дней назад

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

  • @zacardeedomingo6839
    @zacardeedomingo6839 27 дней назад

    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
    @quocthai9382 2 месяца назад

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

  • @hilalaysal2818
    @hilalaysal2818 2 месяца назад

    💗

  • @wickedknock9798
    @wickedknock9798 2 месяца назад

    Brave man than 90 percent ty

  • @riadhch5643
    @riadhch5643 2 месяца назад

    ههههههههههه

  • @programmingchannel6264
    @programmingchannel6264 3 месяца назад

    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

  • @oldboyhr
    @oldboyhr 3 месяца назад

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

  • @surekhasetty9753
    @surekhasetty9753 3 месяца назад

    After completion of coding challenge what is the next step?

    • @IgorKravets81
      @IgorKravets81 3 месяца назад

      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
    @franky1116 3 месяца назад

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

  • @meetpatel2720
    @meetpatel2720 4 месяца назад

    In coding test what they ask basically?

  • @meetpatel2720
    @meetpatel2720 4 месяца назад

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

  • @SonOfHtayta
    @SonOfHtayta 4 месяца назад

    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
    @oinn6216 4 месяца назад

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

  • @ayushman_sr
    @ayushman_sr 5 месяцев назад

    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
    @devonsensi233 6 месяцев назад

    I just tried it never worked 😢

    • @IgorKravets81
      @IgorKravets81 6 месяцев назад

      Please contact your manufacturer.

    • @waynedrew975
      @waynedrew975 4 месяца назад

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

  • @bilalaslam6159
    @bilalaslam6159 6 месяцев назад

    Is it allowed to google during test ?

    • @IgorKravets81
      @IgorKravets81 6 месяцев назад

      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
    @augustonunesfarias4062 6 месяцев назад

    bruuuh 💀

  • @AlamKhan-yt9wd
    @AlamKhan-yt9wd 6 месяцев назад

    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
      @IgorKravets81 6 месяцев назад

      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-yt9wd 6 месяцев назад

    Did you take another try??

    • @IgorKravets81
      @IgorKravets81 6 месяцев назад

      Not yet. I got a fulltime job at a company

    • @AlamKhan-yt9wd
      @AlamKhan-yt9wd 6 месяцев назад

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

    • @IgorKravets81
      @IgorKravets81 6 месяцев назад

      @@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 RUclips extensively. I think the best advice there is to take every interview you can - gain experience on passing them

    • @hilalinan3209
      @hilalinan3209 5 месяцев назад

      @@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
    @tmwquavo7459 6 месяцев назад

    bro this turing bootcamp is free?

  • @JoseRodriguez-en8bo
    @JoseRodriguez-en8bo 7 месяцев назад

    WTF kinda hack is that!?

    • @IgorKravets81
      @IgorKravets81 7 месяцев назад

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

    • @mmbproducer5969
      @mmbproducer5969 6 месяцев назад

      Did you throwtle while doing so?

    • @itsPandaDan
      @itsPandaDan 6 месяцев назад

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

  • @jaia466
    @jaia466 8 месяцев назад

    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
    @jpg6113 8 месяцев назад

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

    • @IgorKravets81
      @IgorKravets81 8 месяцев назад

      Next time will be much easier!

    • @nikasamkharadze4656
      @nikasamkharadze4656 7 месяцев назад

      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
    @lupebrown1246 8 месяцев назад

    He SHHHHLAAAAPPPPPED those cheeks down.

  • @yash3shinde
    @yash3shinde 8 месяцев назад

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

  • @the_CodingTraveller
    @the_CodingTraveller 8 месяцев назад

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

    • @IgorKravets81
      @IgorKravets81 8 месяцев назад

      Thanks!

    • @jyoshnasaripilli
      @jyoshnasaripilli Месяц назад

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

  • @hextiandro
    @hextiandro 9 месяцев назад

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

    • @IgorKravets81
      @IgorKravets81 9 месяцев назад

      Im glad it helped somehow ) thanks!

  • @mubashirwaheed474
    @mubashirwaheed474 9 месяцев назад

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

  • @MarchMadeFrog
    @MarchMadeFrog 9 месяцев назад

    nice

  • @kbyoungblood6948
    @kbyoungblood6948 9 месяцев назад

    Those are good advices, thank you

  • @didierliango6402
    @didierliango6402 9 месяцев назад

    Very nice video.

  • @Kubernetes7627
    @Kubernetes7627 9 месяцев назад

    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
    @frostcodes5306 10 месяцев назад

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

  • @sergiocoder
    @sergiocoder 10 месяцев назад

    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, RUclips is full of positive reviews published on their own channel instead of reviews from real people. that's what bugs me as well.

    • @millennyfeng9502
      @millennyfeng9502 10 месяцев назад

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

    • @sergiocoder
      @sergiocoder 10 месяцев назад

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

    • @rekcahY
      @rekcahY 10 месяцев назад

      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
      @pinakeekaushik4311 4 месяца назад

      @@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-vj3gm6on9e 10 месяцев назад

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

  • @Splash-zt7kj
    @Splash-zt7kj 10 месяцев назад

    Informative

  • @mr.pingpong502
    @mr.pingpong502 11 месяцев назад

    Do you get another chance to clear the test?

    • @IgorKravets81
      @IgorKravets81 11 месяцев назад

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

    • @elimusa6764
      @elimusa6764 6 месяцев назад

      yes, after 3 months

  • @jayangavliyanage
    @jayangavliyanage 11 месяцев назад

    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.6114 11 месяцев назад

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

    • @IgorKravets81
      @IgorKravets81 11 месяцев назад

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

  • @megadevices1000
    @megadevices1000 11 месяцев назад

    Hi Igor, thanks for the video, useful and meaningful!