It's funny how this playlist came out just went I was looking for a go playlist. Kudos
@abhinav.sharma3 жыл бұрын
Just started following this Tutorial Series, Shaun! Great work as always.
@Braenn6663 жыл бұрын
I like the pace of your videos, excellent for beginners like me :)
@siddhantkashyap59343 жыл бұрын
Really enjoying the series, Man!!
@tavoochoa100 Жыл бұрын
as an advice while doing the examples try to clean up the console so all the outputs could be more readable
@MaxProgramming3 жыл бұрын
GO IS FUNNNN
@plus_wisdom3 жыл бұрын
ages := []int{45, 20, 35, 30, 75, 60, 50, 25} sort.Ints(ages) fmt.Println(ages) index := sort.SearchInts(ages, 1) fmt.Println(index) This statement returns zero, but value 1 doesn't exists and as ninja said it could be return 8. Whats wrong ?
@jumashka62611 ай бұрын
If 1 existed, its index would be 0. Function works in this way I think.
@The_knowledge4353 ай бұрын
Yes you are correct ,that's the logic@@jumashka626
@udayverma61203 жыл бұрын
By what date approximately will you be able to complete this series? Thanks for all these videos!
@NetNinja3 жыл бұрын
Hopefully they will all be up within the next 1-2 weeks. 21 videos in total :)
@ahmadalharbi90973 жыл бұрын
Thanks Shuan , will golang be related to your web development courses in future?
@laramaxal43453 жыл бұрын
Please make a tutorial for NodeJs (Backend) middleware API and React/Vuejs (frontend). How we fetch/send data from frontend to backend.
@crypto-mech-arena3 жыл бұрын
Super, but how to get the last element from an array.? Like in Python list[-1]
@jakerawk3 жыл бұрын
lastElement := list[len(list)-1]
@みの-e7j2 жыл бұрын
Good Contents!!!!
@toluwasethomas6003 жыл бұрын
awesome
@devprakash53203 жыл бұрын
brilliant
@amiralina24 күн бұрын
Great
@borisakelovic99303 жыл бұрын
// You go Ninja :D
@kvelez Жыл бұрын
Cool
@syedahkam71643 жыл бұрын
Rust lang tutorial when?
@blezzyzx3 жыл бұрын
Sheeeshhhh
@yasamanranjbar98113 жыл бұрын
Please hold nuxt.js course . Your course is the best Thank you
@mgr12823 жыл бұрын
GoFiber
@vaster1142 Жыл бұрын
ages := []int{45,99,92,723,1} fmt.Println( sort.SearchInts(ages ,8) == sort.SearchInts(ages ,45)) Output: True 😂I thought it would be wiser at this. Buh just like others ,it automatically fills in 8 in order of magnitude even though it doesn't exist and it makes it hold the same place with the actual 45.