SQLZOO Solutions

The following are my solutions to the basic questions of sqlzoo.net as part of my learning process. [Read More]
Tags: SQL

Leetcode 8: String to Integer (atoi)

Question Implement atoi to convert a string to an integer. The atoi() function in C takes a string (which represents an integer) as an argument and returns its value of type int. So basically the function is used to convert a string argument to an integer. [Read More]
Tags: Leetcode