CodeWars PYTHON Challenge #1 #tech #coding

preview_player
Показать описание
How to create the ULTIMATE GitHub README PROFILE FULL VIDEO

Full article here:

****************************************************************
If you would like to see me doing non-youtubey things you can follow us on Twitter, Facebook, TikTok, and Instagram.
Let’s connect:


Collabs? Inquiries?
DM on Instagram or email at:

:::::::::::::::::::: F A Q ::::::::::::::::::::::

Name: Kenny
Age: 22
Birthday: December 17
Zodiac Sign: Sagittarius
Nationality: Nigerian

*************************************
Рекомендации по теме
Комментарии
Автор

fn reverse_digits(n: u32) -> Vec<u32> {
let mut digits = Vec::new();
let mut n = n;
while n > 0 {
digits.push(n % 10);
n /= 10;
}
digits
}

Solution in Rust. Congratulations on your initiative and I wish you success.

leonardosaads