Я конечно воспринимаю инглишь на слух и не хочу никого шеймить, но вот этот шепелявый ютубер очень очень напрягает своей дикцией. Когнитивно сложнее воспринимать и так не легкую информацию имхо.
sidharrthnix
Hi, where can i find the questions for these videos. I can obtain answer from download course material, but they dont have questions
savvit
есть возможность добавить субтитры?
darker
savvit
используйте - https://github.com/ilyhalight/voice-over-translation
можно будет и субтитры, и озвученный перевод сделать, если нужно.
savvit
darker
спасибо за совет
mtmanh2024
why when i download materail, quality of videos too bad
adeel
Typescript solutions are not complete
For example, for video#87 (reveal minesweeper),
the solution the solution on path 2. Medium > 56. Reveal Minesweeper > 9. TypeScript is not complete.
Same with other many Typescript solutions.
chipaldos
4. very hard -> 36. Smallest Substring Containing -> Go. Решение неполное. И так много где.
CourseHunter Team
chipaldos
Действительно, извините. Поправим, отпишем тут
chipaldos
CourseHunter Team
Здравствуйте, а когда будет обновление?
chipaldos
CourseHunter Team
Спасибо!
HashMap
Thanks
JarvisJack
Thank you for updating.
Anonymous
Thank you for updating the course!
Anonymous
Could you please update the course ?
Andrew
Can you update with subtitle
JarvisJack
Please Update the course
HashMap
Please Update
Satansoft
По голосу узнал шепелявого румына, это он в гугл собеседует xD
HashMap
Satansoft
он Румын? Фамилия вроде под румынскую подойдет)
Zeroname
@Coursehunters Team, будь ласка, благослови нас.
CourseHunter Team
Zeroname
ще трішки
Mendax47
somebody update it please.... :'(
Zeroname
update please...
V
200 now!
anton
Upda please
faizi
Admin pls update
Anonymous
There are 195 Questions up to this date.
John wick
Please update
Anonymous
there are 20+ new coding questions
JScripter
If possible - update, please
gogo
@admin
please update the zip code material
SKIncognito
Would be much appreciated if you could upload the question prompts + hints as well. I could find all the easy ones on the web, but not all the medium+ ones.
Surprised no one else asked for them, are you guys just looking at the solution before giving it a try? Or maybe giving it a try after the solution has been discussed, without looking at the completed code? I'm trying to build a little intuition beyond memorizing solutions though.
SKIncognito
SKIncognito
Wish I could delete that comment. But yes if you look hard enough you can find every question without hints or sample input/output.
restored
please update zip
andreyfits
Обновите материалы пожалуйста!
Drekavac
Обновите материалы пожалуйста!
ThePentagramBurns
Спасибо большое за обновление!!!
andreyfits
Please update!
HEM4NG
Please update !!!
Andrew
Please Update
Anonymous
update please
gogo
plz update the course
voterrobe
hey admin, could you please update this?
ThePentagramBurns
обновите курс, пожалуйста. Там уже полно новых видео.
veros_bo
hey admin, could you please update this?
seemeon
Please update
Tokala
please update ,we are good if u update just videos
John wick
Tokala
No we are not
sealbergs
found a better way to solve task 19: MoveElementToEnd
It returns an array of numbers with selected number moved to the end, but other numbers are still in the same order they were represented in the initial array.
const moveToEnd = (array, num) => {
let idx = array.indexOf(num);
for (let i = idx + 1; i < array.length; i++){
if (array[i] !== num){
//swap
[array[i], array[idx]] = [array[idx], array[i]];
idx++;
}
}
return array;
}
Andrew
Hey can I add other courses?https://www.algoexpert.io/purchase
Anonymous
please update , thanks
thanhhung.0706
Please update. Thank you
Drekavac
Обновите пожалуйста
potent
PLEASE UPDATE
Vivek
Update it please, thanks.
ASilentVoice
Update it please, thanks.
Anonymous
Please update the course. It has 60 more videos
rakeshsuvidya
Please update the course. There are 160 videos on the actual website. Thanks
Команда внимательно читает ваши комментарии и оперативно на них реагирует. Вы можете спокойно оставлять запросы на обновления или задавать любые вопросы о курсе здесь.
можно будет и субтитры, и озвученный перевод сделать, если нужно.
For example, for video#87 (reveal minesweeper),
the solution the solution on path 2. Medium > 56. Reveal Minesweeper > 9. TypeScript is not complete.
Same with other many Typescript solutions.
please update the zip code material
Surprised no one else asked for them, are you guys just looking at the solution before giving it a try? Or maybe giving it a try after the solution has been discussed, without looking at the completed code? I'm trying to build a little intuition beyond memorizing solutions though.
It returns an array of numbers with selected number moved to the end, but other numbers are still in the same order they were represented in the initial array.
const moveToEnd = (array, num) => {
let idx = array.indexOf(num);
for (let i = idx + 1; i < array.length; i++){
if (array[i] !== num){
//swap
[array[i], array[idx]] = [array[idx], array[i]];
idx++;
}
}
return array;
}