Posts by Luciano B. M. • 26 points
4 posts
-
1
votes2
answers39
viewsA: Oracle - Regular expressions
You can use the expression [A-Za-z]{1}[0-9]{1,} for any letter followed by a sequence of numbers of 1 or more digits. You can use the expression [Ee][0-9]{1,} for any occurrence beginning with the…
-
-3
votes2
answers2074
viewsA: Dynamic matrix allocation in C++
Study this artifact I created long ago and remove from it any concept that suits you. #include <windows.h> #include <stdio.h> #include <psapi.h> #include <time.h> #include…
-
0
votes2
answers281
viewsA: Question about recovering data from database
Python is a language where the proposal is to have clear, light writing and be very productive. Try to understand best practices for Python, both for algorithms (writing) and for data structures.…
-
0
votes2
answers107
viewsA: python cleaning raw data manually
Hi, my friend. When you use a language, you have to be used to its resources. Try to understand how to use Python and specifically the Pandas library. Very powerful. Python was created, among other…