Is database knowledge actually one of THE core competencies for people working with data in any way? Computer Science |
- Is database knowledge actually one of THE core competencies for people working with data in any way?
- Faster way to find two prime factors using their product
- Important Data Structures And Algorithms In Python
- C vs C#
Is database knowledge actually one of THE core competencies for people working with data in any way? Posted: 10 Jun 2021 10:50 AM PDT I have seen a lot of comments of the form: "You only need the absolute basics of SQL. You will learn all the things along your job" And there was an professor who said something like this: "To have a profound knowledge about (scalable) databases with their architecture/design is very high on the list of core competencies every cs major should have. It will not only help you working with databases but basically in every other field." [link] [comments] |
Faster way to find two prime factors using their product Posted: 10 Jun 2021 10:30 AM PDT Hey guys, try running this python code with some large product of primes. I think it will be a faster than blind brute forcing. First we get the product of primes as input "n" then we take the whole number part of its square root(coz each prime factor will lie on either sides of the number line). Then we get the last digit of "n". All primes end in 1 or 3 or 7 or 9 except 2 and 5. After checking that "n" is neither 2 nor 5 we enter the for loop. "n" is divided by the numbers between the square root and 1 ending 1,3,7,9 to find a reminder of 0 i.e. a whole number quotient. then we see that " i " and " q " are prime factors of "n". Thank you. [link] [comments] |
Important Data Structures And Algorithms In Python Posted: 09 Jun 2021 10:26 PM PDT |
Posted: 09 Jun 2021 10:18 PM PDT |
You are subscribed to email updates from Computer Science: Theory and Application. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment