Category: learn to code
I was trying to test the ChatGPT’s coding skills, thus I prompted it: “Solve the leetcode 704 using Rust”. This is a Binary Search Problem, see the following problem …
Passion for Learning Technology evolves, and as a software engineer, you would need a passion for learning to be successful. Google/StackOverflow is a must-have skill. Using right tools Choose …
Given a list of intervals denoted with (start, end), implement a function that returns true if none of these intervals overlap. Definition of Intervals A interval can be defined …
In MATLAB, there is a very useful function called ‘reshape’, which can reshape a matrix into a new one with different size but keep its original data. You’re given …
Given an array of integers – find out the maximum product of the tree numbers in the array. For example, output: and , output 24. We can easily write …