Coding setup
Setup IDE on Ubuntu (I chose linux):
- Install PyCharm on Ubuntu 20.04 Linux Desktop <for python> https://linuxconfig.org/how-to-install-pycharm-on-ubuntu-20-04-linux-desktop
- Install Eclipse IDE on Ubuntu 18.04 <for java> https://linuxize.com/post/how-to-install-the-latest-eclipse-ide-on-ubuntu-18-04/
Linux commands:
- ls -la
- Delete folder: sudo rm -R programming-exercises
git commands:
- git status
- git add .
- git commit -m "My first commit" -m "Some description"
- git push
Coding tips:
- Use mod div %10 to extract the last digit. Ex: 1234%10 = 4
- Use div /10 to extract the digits preceding the last digit Ex: 1234/10 = 123
Comments
Post a Comment